Changeset 24919 in vbox
- Timestamp:
- Nov 24, 2009 6:58:14 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55204
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r24765 r24919 5600 5600 { 5601 5601 LogFlowThisFuncEnter(); 5602 LogFlowThisFunc(("aMachineState=% d\n", aMachineState));5602 LogFlowThisFunc(("aMachineState=%s\n", Global::stringifyMachineState(aMachineState) )); 5603 5603 5604 5604 AutoCaller autoCaller(this); … … 9999 9999 { 10000 10000 LogFlowThisFuncEnter(); 10001 LogFlowThisFunc(("aMachineState=% d\n", aMachineState));10001 LogFlowThisFunc(("aMachineState=%s\n", Global::stringifyMachineState(aMachineState) )); 10002 10002 10003 10003 AutoCaller autoCaller(this); … … 10008 10008 MachineState_T oldMachineState = mData->mMachineState; 10009 10009 10010 AssertMsgReturn (oldMachineState != aMachineState, 10011 ("oldMachineState=%d, aMachineState=%d\n", 10012 oldMachineState, aMachineState), E_FAIL); 10010 AssertMsgReturn(oldMachineState != aMachineState, 10011 ("oldMachineState=%s, aMachineState=%s\n", 10012 Global::stringifyMachineState(oldMachineState), Global::stringifyMachineState(aMachineState)), 10013 E_FAIL); 10013 10014 10014 10015 HRESULT rc = S_OK; … … 10178 10179 } 10179 10180 10180 LogFlowThisFunc(("rc=% 08X\n", rc));10181 LogFlowThisFunc(("rc=%Rhrc [%s]\n", rc, Global::stringifyMachineState(mData->mMachineState) )); 10181 10182 LogFlowThisFuncLeave(); 10182 10183 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.