Changeset 95105 in vbox for trunk/src/VBox/Frontends/VBoxAutostart
- Timestamp:
- May 25, 2022 2:46:53 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxAutostart/VBoxAutostart-posix.cpp
r93115 r95105 64 64 65 65 ComPtr<IVirtualBoxClient> g_pVirtualBoxClient = NULL; 66 bool g_fVerbose = false;67 66 ComPtr<IVirtualBox> g_pVirtualBox = NULL; 68 67 ComPtr<ISession> g_pSession = NULL; … … 72 71 static uint32_t g_uHistoryFileTime = RT_SEC_1DAY; /* Max 1 day per file. */ 73 72 static uint64_t g_uHistoryFileSize = 100 * _1M; /* Max 100MB per file. */ 73 74 /** Verbosity level. */ 75 unsigned g_cVerbosity = 0; 74 76 75 77 /** Run in background. */ … … 240 242 { 241 243 if ( enmLogType == AUTOSTARTLOGTYPE_VERBOSE 242 && !g_ fVerbose)244 && !g_cVerbosity) 243 245 return; 244 246 … … 359 361 360 362 case 'v': 361 g_ fVerbose = true;363 g_cVerbosity++; 362 364 break; 363 365
Note:
See TracChangeset
for help on using the changeset viewer.