diff options
author | tjpcc <tjp@ctrl-c.club> | 2023-09-14 09:40:39 -0600 |
---|---|---|
committer | tjpcc <tjp@ctrl-c.club> | 2023-09-14 09:40:39 -0600 |
commit | 15035206f46eb258e482d20ea8d49a232f2d5161 (patch) | |
tree | dd86e981c0fc3e31bea53051e22ecc0f6e1da1da /logging | |
parent | a768f589b9ce146ae227115713966d439750e9d5 (diff) |
make debug log text more visible
Diffstat (limited to 'logging')
-rw-r--r-- | logging/logger.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logging/logger.go b/logging/logger.go index f80a1ae..87b5985 100644 --- a/logging/logger.go +++ b/logging/logger.go @@ -25,7 +25,7 @@ func DefaultLoggers() (debug, info, warn, error Logger) { switch keyvals[i+1] { case level.DebugValue(): - return term.FgBgColor{Fg: term.DarkGray} + return term.FgBgColor{Fg: term.Gray} case level.InfoValue(): return term.FgBgColor{Fg: term.Green} case level.WarnValue(): |