Changeset 98268 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Jan 24, 2023 9:47:59 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 155471
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/ConsoleImpl2.cpp
r98262 r98268 292 292 int vrc, 293 293 const char *pcszName) 294 : RTCError(Utf8StrFmt(Console::tr("%s failed: rc=%Rrc, pcszName=%s"), pcszFunction, vrc, pcszName)),294 : RTCError(Utf8StrFmt(Console::tr("%s failed: vrc=%Rrc, pcszName=%s"), pcszFunction, vrc, pcszName)), 295 295 m_vrc(vrc) 296 296 { … … 4140 4140 hrc = pMachine->GetExtraData(Bstr(strKey).raw(), bstrExtraDataValue.asOutParam()); 4141 4141 if (FAILED(hrc)) 4142 LogRel(("Warning: Cannot get extra data key %s, rc = %Rhrc\n", strKey.c_str(), hrc));4142 LogRel(("Warning: Cannot get extra data key %s, hrc = %Rhrc\n", strKey.c_str(), hrc)); 4143 4143 4144 4144 if (fFirst) … … 4913 4913 PCFGMNODE pCtlInst = NULL; 4914 4914 4915 // #define RC_CHECK() AssertMsgReturn(RT_SUCCESS( rc), ("rc=%Rrc\n", rc),rc)4915 // #define RC_CHECK() AssertMsgReturn(RT_SUCCESS(vrc), ("vrc=%Rrc\n", vrc), vrc) 4916 4916 #define H() AssertLogRelMsgReturn(!FAILED(hrc), ("hrc=%Rhrc\n", hrc), VERR_MAIN_CONFIG_CONSTRUCTOR_COM_ERROR) 4917 4917 … … 5528 5528 if (RT_FAILURE(vrc)) 5529 5529 { 5530 LogRel(("CLOUD-NET: Failed to create HTTP context ( rc=%Rrc)\n", vrc));5530 LogRel(("CLOUD-NET: Failed to create HTTP context (vrc=%Rrc)\n", vrc)); 5531 5531 return vrc; 5532 5532 } … … 5598 5598 if (RT_FAILURE(vrc)) 5599 5599 { 5600 LogRel(("CLOUD-NET: Failed to get proxy for %s ( rc=%Rrc)\n", strIpAddr.c_str(), vrc));5600 LogRel(("CLOUD-NET: Failed to get proxy for %s (vrc=%Rrc)\n", strIpAddr.c_str(), vrc)); 5601 5601 return vrc; 5602 5602 } … … 6001 6001 if (!SUCCEEDED(hrc)) 6002 6002 { 6003 AssertLogRelMsgFailed(("NetworkAttachmentType_Bridged: FindByName failed, rc=%Rhrc (0x%x)\n", hrc, hrc));6003 AssertLogRelMsgFailed(("NetworkAttachmentType_Bridged: FindByName failed, hrc=%Rhrc (0x%x)\n", hrc, hrc)); 6004 6004 return pVMM->pfnVMR3SetError(pUVM, VERR_INTERNAL_ERROR, RT_SRC_POS, 6005 6005 N_("Nonexistent host networking interface, name '%ls'"),
Note:
See TracChangeset
for help on using the changeset viewer.