We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de26306 commit 8344d95Copy full SHA for 8344d95
ads/aqua/cli.py
@@ -48,7 +48,7 @@ def __init__(
48
or 'ERROR' if not set. Example values include 'DEBUG', 'INFO',
49
'WARNING', 'ERROR', and 'CRITICAL'.
50
"""
51
- if log_level not in LOG_LEVELS:
+ if log_level.upper() not in LOG_LEVELS:
52
logger.error(
53
f"Log level should be one of {LOG_LEVELS}. Setting default to ERROR."
54
)
0 commit comments