Skip to content

Commit

Permalink
Fix string
Browse files Browse the repository at this point in the history
  • Loading branch information
psrok1 committed Feb 12, 2024
1 parent ecc3c20 commit a46d04d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions mwdb/core/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,7 @@ def setup_logger():
timestamp=True,
)
else:
formatter = InlineFormatter(
fmt="[%(levelname)s] " "- %(funcName)s - %(message)s"
)
formatter = InlineFormatter(fmt="[%(levelname)s] - %(funcName)s - %(message)s")
handler.setFormatter(formatter)
handler.addFilter(ContextFilter())
logger.addHandler(handler)
Expand Down

0 comments on commit a46d04d

Please sign in to comment.