VirtualBox

Changeset 26365 in vbox


Ignore:
Timestamp:
Feb 9, 2010 1:37:29 PM (15 years ago)
Author:
vboxsync
Message:

vmR3SetErrorUV: Log the status code too.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VM.cpp

    r25935 r26365  
    36093609    va_list va3;
    36103610    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);
    36123615    va_end(va3);
    36133616
    36143617#ifdef LOG_ENABLED
    36153618    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);
    36173623    va_end(va3);
    36183624#endif
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette