Changeset 69743 in vbox for trunk/src/VBox/Main
- Timestamp:
- Nov 18, 2017 5:09:04 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119143
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/win/svcmain.cpp
r69734 r69743 797 797 /** @todo Merge this code with server.cpp (use Logging.cpp?). */ 798 798 char szLogFile[RTPATH_MAX]; 799 if (!pszLogFile )799 if (!pszLogFile || !*pszLogFile) 800 800 { 801 801 vrc = com::GetVBoxUserHomeDirectory(szLogFile, sizeof(szLogFile)); 802 802 if (RT_SUCCESS(vrc)) 803 803 vrc = RTPathAppend(szLogFile, sizeof(szLogFile), "VBoxSVC.log"); 804 } 805 else 806 { 807 if (!RTStrPrintf(szLogFile, sizeof(szLogFile), "%s", pszLogFile)) 808 vrc = VERR_NO_MEMORY; 809 } 810 if (RT_FAILURE(vrc)) 811 return RTMsgErrorExit(RTEXITCODE_FAILURE, "failed to create logging file name, rc=%Rrc", vrc); 804 if (RT_FAILURE(vrc)) 805 return RTMsgErrorExit(RTEXITCODE_FAILURE, "failed to construct release log filename, rc=%Rrc", vrc); 806 pszLogFile = szLogFile; 807 } 812 808 813 809 char szError[RTPATH_MAX + 128]; 814 vrc = com::VBoxLogRelCreate("COM Server", szLogFile,810 vrc = com::VBoxLogRelCreate("COM Server", pszLogFile, 815 811 RTLOGFLAGS_PREFIX_THREAD | RTLOGFLAGS_PREFIX_TIME_PROG, 816 812 VBOXSVC_LOG_DEFAULT, "VBOXSVC_RELEASE_LOG",
Note:
See TracChangeset
for help on using the changeset viewer.