Changeset 69993 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Dec 7, 2017 5:00:16 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119500
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceTimeSync.cpp
r69991 r69993 131 131 /** Whether to set the time when the VM was restored. */ 132 132 static bool g_fTimeSyncSetOnRestore = true; 133 /** The logging verbosity .133 /** The logging verbosity level. 134 134 * This uses the global verbosity level by default. */ 135 static u nsigned g_uTimeSyncVerbosity = 0;135 static uint32_t g_cTimeSyncVerbosity = 0; 136 136 137 137 /** Current error count. Used to knowing when to bitch and when not to. */ … … 162 162 { 163 163 /* Use global verbosity as default. */ 164 g_ uTimeSyncVerbosity = g_cVerbosity;164 g_cTimeSyncVerbosity = g_cVerbosity; 165 165 166 166 #ifdef VBOX_WITH_GUEST_PROPS … … 232 232 &uValue, 0 /*uMin*/, 255 /*uMax*/); 233 233 if (RT_SUCCESS(rc)) 234 g_ uTimeSyncVerbosity = (unsigned)uValue;234 g_cTimeSyncVerbosity = uValue; 235 235 } 236 236 VbglR3GuestPropDisconnect(uGuestPropSvcClientID); … … 257 257 static void vgsvcTimeSyncLog(unsigned iLevel, const char *pszFormat, ...) 258 258 { 259 if (iLevel <= g_ uTimeSyncVerbosity)259 if (iLevel <= g_cTimeSyncVerbosity) 260 260 { 261 261 va_list args; … … 293 293 else if (!strcmp(argv[*pi], "--timesync-no-set-on-restore")) 294 294 g_fTimeSyncSetOnRestore = false; 295 else if (!strcmp(argv[*pi], "--timesync-verbosity")) 296 rc = VGSvcArgUInt32(argc, argv, "", pi, &g_cTimeSyncVerbosity, 0 /*uMin*/, 255 /*uMax*/); 295 297 else 296 298 rc = -1; … … 729 731 " [--timesync-latency-factor <x>] [--timesync-max-latency <ms>]\n" 730 732 " [--timesync-set-threshold <ms>] [--timesync-set-start]\n" 731 " [--timesync-set-on-restore|--timesync-no-set-on-restore]" 733 " [--timesync-set-on-restore|--timesync-no-set-on-restore]\n" 734 " [--timesync-verbosity <level>]" 732 735 , 733 736 /* pszOptions. */ … … 751 754 " Whether to immediately set the time when the VM is\n" 752 755 " restored or not. Default: --timesync-set-on-restore\n" 756 " --timesync-verbosity Sets the verbosity level. Defaults to service wide\n" 757 " verbosity level.\n" 753 758 , 754 759 /* methods */
Note:
See TracChangeset
for help on using the changeset viewer.