Changeset 90829 in vbox for trunk/src/VBox/Additions/darwin
- Timestamp:
- Aug 24, 2021 10:26:07 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146464
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/darwin/VBoxClient/VBoxClient.cpp
r83716 r90829 59 59 { 60 60 static const char * const s_apszGroups[] = VBOX_LOGGROUP_NAMES; 61 int rc = RTLogCreateEx(&g_pLogger, RTLOGFLAGS_PREFIX_THREAD | RTLOGFLAGS_PREFIX_TIME_PROG, "all", "VBOXCLIENT_RELEASE_LOG",61 int rc = RTLogCreateEx(&g_pLogger, "VBOXCLIENT_RELEASE_LOG", RTLOGFLAGS_PREFIX_THREAD | RTLOGFLAGS_PREFIX_TIME_PROG, "all", 62 62 RT_ELEMENTS(s_apszGroups), s_apszGroups, UINT32_MAX /*cMaxEntriesPerGroup*/, 63 RTLOGDEST_STDOUT,63 NULL /*pfnFlush*/, 0 /*cBufDescs*/, NULL /*paBufDescs*/, RTLOGDEST_STDOUT, 64 64 NULL /*pfnPhase*/, 65 65 pszLogFileName ? 10 : 0 /*cHistory*/, … … 67 67 pszLogFileName ? RT_SEC_1DAY : 0 /*cSecsHistoryTimeSlot*/, 68 68 NULL /*pErrInfo*/, "%s", pszLogFileName ? pszLogFileName : ""); 69 70 69 AssertRCReturn(rc, rc); 71 70
Note:
See TracChangeset
for help on using the changeset viewer.