Skip to content

Commit

Permalink
Default log level is INFO
Browse files Browse the repository at this point in the history
  • Loading branch information
lukipuki committed Jun 9, 2024
1 parent 85b87bf commit 733b048
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/yaroc/utils/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


def get_log_level(log_level: str | None) -> int:
if log_level == "info":
if log_level is None or log_level == "info":
return logging.INFO
elif log_level == "debug":
return logging.DEBUG
Expand Down

0 comments on commit 733b048

Please sign in to comment.