Changeset 705 in vbox for trunk/src/VBox/Main
- Timestamp:
- Feb 6, 2007 2:00:04 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18343
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/ErrorInfo.cpp
r1 r705 285 285 aPrefix = ""; 286 286 287 RTPrintf ("%sFull error info available = %RTbool\n", aPrefix, mIsFullAvailable);288 RTPrintf ("%sBasic error info available = %RTbool\n", aPrefix, mIsBasicAvailable);287 RTPrintf ("%sFull error info present: %RTbool, basic error info present: %RTbool\n", aPrefix, 288 mIsFullAvailable, mIsBasicAvailable); 289 289 if (mIsFullAvailable || mIsBasicAvailable) 290 290 { 291 291 RTPrintf ("%sResult Code = %Rwa\n", aPrefix, mResultCode); 292 RTPrintf ("%sText = {%ls}\n", aPrefix, mText.raw()); 293 RTPrintf ("%sComponent = {%ls}\n", aPrefix, mComponent.raw()); 294 RTPrintf ("%sInterface = {%ls}\n", aPrefix, mInterfaceName.raw()); 295 RTPrintf ("%sIID = {%s}\n", aPrefix, mInterfaceID.toString().raw()); 296 RTPrintf ("%sCallee Name = {%ls}\n", aPrefix, mCalleeName.raw()); 297 RTPrintf ("%sCallee IID = {%s}\n", aPrefix, mCalleeIID.toString().raw()); 292 RTPrintf ("%sText = %ls\n", aPrefix, mText.raw()); 293 RTPrintf ("%sComponent = %ls, Interface: %ls, {%s}\n", aPrefix, 294 mInterfaceName.raw(), mInterfaceID.toString().raw()); 295 RTPrintf ("%sCallee = %ls, {%s}\n", aPrefix, mCalleeName.raw(), mCalleeIID.toString().raw()); 298 296 } 299 297 }
Note:
See TracChangeset
for help on using the changeset viewer.