Skip to content

Commit

Permalink
Fix log formatting issue
Browse files Browse the repository at this point in the history
matentzn committed Dec 8, 2024
1 parent 3eba876 commit 015de17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sssom_validate_ui/utils.py
Original file line number Diff line number Diff line change
@@ -120,7 +120,7 @@ def configure_logger(capture_stream):
logger = logging.getLogger()
log_handler = logging.StreamHandler(capture_stream)
log_handler.setLevel(logging.DEBUG)
log_handler.setFormatter(logging.Formatter("**%(levelname)s**: %(message)s"))
log_handler.setFormatter(logging.Formatter("**%(levelname)s**: %(message)s\n\n"))
logger.addHandler(log_handler)
try:
yield

0 comments on commit 015de17

Please sign in to comment.