Skip to content

Commit

Permalink
fix log messaging output
Browse files Browse the repository at this point in the history
  • Loading branch information
thatmattlove committed Apr 2, 2024
1 parent fedd0b4 commit ba045b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hyperglass/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def init_logger(level: t.Union[int, str] = logging.INFO):
# Reset built-in Loguru configurations.
_loguru_logger.remove()

if not sys.stdout.isatty():
if sys.stdout.isatty():
# Use Rich for logging if hyperglass started from a TTY.

_loguru_logger.add(
Expand Down

0 comments on commit ba045b6

Please sign in to comment.