Changeset 7602 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Mar 27, 2008 5:25:37 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 29102
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR3Lib.cpp
r7539 r7602 38 38 #include <iprt/thread.h> 39 39 #include <VBox/VBoxGuest.h> 40 #include <VBox/log.h> 40 41 #include "VBGLR3Internal.h" 41 42 … … 162 163 #endif 163 164 165 /* Create release logger */ 166 PRTLOGGER loggerRelease; 167 static const char * const s_apszGroups[] = VBOX_LOGGROUP_NAMES; 168 int rrc = RTLogCreate(&loggerRelease, 0, NULL, "VBOXGUEST_RELEASE_LOG", 169 RT_ELEMENTS(s_apszGroups), &s_apszGroups[0], 170 RTLOGDEST_USER, "VBox.log"); 171 /* This may legitimately fail if we are using the mini-runtime. */ 172 if (RT_SUCCESS(rrc)) 173 RTLogRelSetDefaultInstance(loggerRelease); 174 164 175 return VINF_SUCCESS; 165 176 }
Note:
See TracChangeset
for help on using the changeset viewer.