Changeset 8309 in vbox for trunk/src/VBox/Main
- Timestamp:
- Apr 22, 2008 7:17:24 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 30066
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/ErrorInfo.cpp
r8155 r8309 221 221 } 222 222 223 void ErrorInfo::print (const char *aPrefix /* = NULL */)224 {225 if (aPrefix == NULL)226 aPrefix = "";227 228 RTPrintf ("%sFull error info present: %RTbool, basic error info present: %RTbool\n", aPrefix,229 mIsFullAvailable, mIsBasicAvailable);230 if (mIsFullAvailable || mIsBasicAvailable)231 {232 RTPrintf ("%sResult Code = %Rwa\n", aPrefix, mResultCode);233 RTPrintf ("%sText = %ls\n", aPrefix, mText.raw());234 RTPrintf ("%sComponent = %ls, Interface: %ls, {%s}\n", aPrefix,235 mComponent.raw(), mInterfaceName.raw(), mInterfaceID.toString().raw());236 RTPrintf ("%sCallee = %ls, {%s}\n", aPrefix, mCalleeName.raw(), mCalleeIID.toString().raw());237 }238 }239 240 223 // ProgressErrorInfo class 241 224 ////////////////////////////////////////////////////////////////////////////////
Note:
See TracChangeset
for help on using the changeset viewer.