diff --git a/EDMarketConnector.py b/EDMarketConnector.py index a89d8d27..d00ed92f 100755 --- a/EDMarketConnector.py +++ b/EDMarketConnector.py @@ -76,6 +76,12 @@ if __name__ == '__main__': # noqa: C901 action='store_true', ) + parser.add_argument( + '--trace-on', + help='Mark the selected trace logging as active. "*" or "all" is equivalent to --trace-all', + action='append', + ) + parser.add_argument( "--trace-all", help="Disable trace-on functionality (show any and all trace messages, regardless of trace-on gates)", @@ -105,12 +111,6 @@ if __name__ == '__main__': # noqa: C901 action='append', ) - parser.add_argument( - '--trace-on', - help='Mark the selected trace logging as active. "*" or "all" is equivalent to --trace-all', - action='append', - ) - auth_options = parser.add_mutually_exclusive_group(required=False) auth_options.add_argument('--force-localserver-for-auth', help='Force EDMC to use a localhost webserver for Frontier Auth callback',