Fix/startup failure (#445)

* Fix loggin startup problems
This commit is contained in:
cybermaggedon 2025-07-30 23:42:11 +01:00 committed by GitHub
parent dd70aade11
commit 444d205251
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 14 deletions

View file

@ -73,8 +73,7 @@ class PulsarClient:
parser.add_argument(
'-l', '--log-level',
type=LogLevel,
default=LogLevel.INFO,
choices=list(LogLevel),
help=f'Output queue (default: info)'
default='INFO',
choices=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'],
help=f'Log level (default: INFO)'
)