Changeset 8709 in vbox for trunk/src/VBox/Main/VirtualBoxBase.cpp
- Timestamp:
- May 8, 2008 1:43:21 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/VirtualBoxBase.cpp
r8683 r8709 609 609 HRESULT aResultCode, const GUID &aIID, 610 610 const Bstr &aComponent, const Bstr &aText, 611 bool aWarning )611 bool aWarning, bool aLogIt) 612 612 { 613 613 /* whether multi-error mode is turned on */ 614 614 bool preserve = ((uintptr_t) RTTlsGet (MultiResult::sCounter)) > 0; 615 615 616 LogRel (("ERROR [COM]: aRC=%Rhrc (%#08x) aIID={%RTuuid} aComponent={%ls} aText={%ls} " 617 "aWarning=%RTbool, preserve=%RTbool\n", 618 aResultCode, aResultCode, &aIID, aComponent.raw(), aText.raw(), aWarning, 619 preserve)); 616 if (aLogIt) 617 LogRel (("ERROR [COM]: aRC=%Rhrc (%#08x) aIID={%RTuuid} aComponent={%ls} aText={%ls} " 618 "aWarning=%RTbool, preserve=%RTbool\n", 619 aResultCode, aResultCode, &aIID, aComponent.raw(), aText.raw(), aWarning, 620 preserve)); 620 621 621 622 /* these are mandatory, others -- not */
Note:
See TracChangeset
for help on using the changeset viewer.