VirtualBox

Ignore:
Timestamp:
Dec 7, 2017 5:00:16 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
119500
Message:

VBoxServiceTimeSync.cpp: s/g_uTimeSyncVerbosity/g_cTimeSyncVerbosity/ (original was g_cVerbose). Added --timesync-verbosity <level> command line argument too, to mirror the guest property option.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceTimeSync.cpp

    r69991 r69993  
    131131/** Whether to set the time when the VM was restored. */
    132132static bool             g_fTimeSyncSetOnRestore = true;
    133 /** The logging verbosity.
     133/** The logging verbosity level.
    134134 *  This uses the global verbosity level by default. */
    135 static unsigned         g_uTimeSyncVerbosity = 0;
     135static uint32_t         g_cTimeSyncVerbosity = 0;
    136136
    137137/** Current error count. Used to knowing when to bitch and when not to. */
     
    162162{
    163163    /* Use global verbosity as default. */
    164     g_uTimeSyncVerbosity = g_cVerbosity;
     164    g_cTimeSyncVerbosity = g_cVerbosity;
    165165
    166166#ifdef VBOX_WITH_GUEST_PROPS
     
    232232                                     &uValue, 0 /*uMin*/, 255 /*uMax*/);
    233233            if (RT_SUCCESS(rc))
    234                 g_uTimeSyncVerbosity = (unsigned)uValue;
     234                g_cTimeSyncVerbosity = uValue;
    235235        }
    236236        VbglR3GuestPropDisconnect(uGuestPropSvcClientID);
     
    257257static void vgsvcTimeSyncLog(unsigned iLevel, const char *pszFormat, ...)
    258258{
    259     if (iLevel <= g_uTimeSyncVerbosity)
     259    if (iLevel <= g_cTimeSyncVerbosity)
    260260    {
    261261        va_list args;
     
    293293    else if (!strcmp(argv[*pi], "--timesync-no-set-on-restore"))
    294294        g_fTimeSyncSetOnRestore = false;
     295    else if (!strcmp(argv[*pi], "--timesync-verbosity"))
     296        rc = VGSvcArgUInt32(argc, argv, "", pi, &g_cTimeSyncVerbosity, 0 /*uMin*/, 255 /*uMax*/);
    295297    else
    296298        rc = -1;
     
    729731    "              [--timesync-latency-factor <x>] [--timesync-max-latency <ms>]\n"
    730732    "              [--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>]"
    732735    ,
    733736    /* pszOptions. */
     
    751754    "                            Whether to immediately set the time when the VM is\n"
    752755    "                            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"
    753758    ,
    754759    /* methods */
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette