File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -338,9 +338,6 @@ public RootCommand GetRootCommand(ILogger logger)
338
338
var command = new RootCommand {
339
339
_portOption ,
340
340
_ipAddressOption ,
341
- // _logLevelOption is set while initializing the Program
342
- // As such, it's always set here
343
- _logLevelOption ! ,
344
341
_recordOption ,
345
342
_watchPidsOption ,
346
343
_watchProcessNamesOption ,
@@ -358,6 +355,9 @@ public RootCommand GetRootCommand(ILogger logger)
358
355
_envOption
359
356
} ;
360
357
command . Description = "Dev Proxy is a command line tool for testing Microsoft Graph, SharePoint Online and any other HTTP APIs." ;
358
+ // _logLevelOption is set while initializing the Program
359
+ // As such, it's always set here
360
+ command . AddGlobalOption ( _logLevelOption ! ) ;
361
361
362
362
var msGraphDbCommand = new Command ( "msgraphdb" , "Generate a local SQLite database with Microsoft Graph API metadata" )
363
363
{
You can’t perform that action at this time.
0 commit comments