Skip to content

Commit

Permalink
Removed unnecessary brackets around log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
felixschndr committed Jan 28, 2025
1 parent 3b653df commit d0208ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/logger_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def __init__(self):
log_level = os.getenv("LOG_LEVEL", "INFO").upper()
logging.basicConfig(
stream=sys.stdout,
format="[%(asctime)s] [%(name)s] [%(levelname)s] [%(message)s]",
format="[%(asctime)s] [%(name)s] [%(levelname)s] %(message)s",
encoding="utf-8",
level=log_level,
)
Expand Down

0 comments on commit d0208ab

Please # to comment.