Fix CLI debug argument to default to False instead of reading from database,...

Fix CLI debug argument to default to False instead of reading from database, preventing unwanted debug inheritance
parent e3b3b45a
......@@ -216,7 +216,7 @@ Examples:
parser.add_argument(
'--debug',
action='store_true',
default=default_debug,
default=False, # CLI defaults to False, config loading handles actual defaults
help='Enable debug mode'
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment