Changeset 26365 in vbox
- Timestamp:
- Feb 9, 2010 1:37:29 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VM.cpp
r25935 r26365 3609 3609 va_list va3; 3610 3610 va_copy(va3, *pArgs); 3611 RTLogRelPrintf("VMSetError: %s(%d) %s\nVMSetError: %N\n", pszFile, iLine, pszFunction, pszFormat, &va3); 3611 RTLogRelPrintf("VMSetError: %s(%d) %s; rc=%Rrc\n" 3612 "VMSetError: %N\n", 3613 pszFile, iLine, pszFunction, rc, 3614 pszFormat, &va3); 3612 3615 va_end(va3); 3613 3616 3614 3617 #ifdef LOG_ENABLED 3615 3618 va_copy(va3, *pArgs); 3616 RTLogPrintf("VMSetError: %s(%d) %s\n%N\n", pszFile, iLine, pszFunction, pszFormat, &va3); 3619 RTLogPrintf("VMSetError: %s(%d) %s; rc=%Rrc\n" 3620 "%N\n", 3621 pszFile, iLine, pszFunction, rc, 3622 pszFormat, &va3); 3617 3623 va_end(va3); 3618 3624 #endif
Note:
See TracChangeset
for help on using the changeset viewer.