Skip to content

Commit

Permalink
tweak log colors
Browse files Browse the repository at this point in the history
  • Loading branch information
mlin committed Nov 8, 2019
1 parent 2570d27 commit 1d0c4d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WDL/_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,8 @@ def install_coloredlogs(logger: logging.Logger) -> None:
if sys.stderr.isatty() and "NO_COLOR" not in os.environ:
level_styles = dict(coloredlogs.DEFAULT_LEVEL_STYLES)
level_styles["debug"]["color"] = 242
level_styles["notice"] = {}
level_styles["info"] = {"color": "magenta"}
level_styles["notice"] = {"color": "magenta"}
level_styles["info"] = {}
field_styles = None

coloredlogs.install(
Expand Down

0 comments on commit 1d0c4d4

Please sign in to comment.