1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-17 01:22:19 +03:00

TRACE: Move --trace-on arg to between --trace and --trace-all

This commit is contained in:
Athanasius 2021-08-13 11:37:24 +01:00
parent 80da39d393
commit e10e8390a3
No known key found for this signature in database
GPG Key ID: AE3E527847057C7D

@ -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',