Skip to content

Commit

Permalink
🧹 fix logging for windows cli output via powershell remoteing
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-rock committed Oct 3, 2023
1 parent d86da47 commit e285978
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions logger/cliwriter.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,13 @@ func consoleFormatLevel() zerolog.Formatter {
l = "DBG"
color = colors.DefaultColorTheme.Primary
case "info":
l = ""
l = ""
color = colors.DefaultColorTheme.Good
case "warn":
l = "!"
l = "WRN"
color = colors.DefaultColorTheme.Medium
case "error":
l = "x"
l = "ERR"
color = colors.DefaultColorTheme.Error
case "fatal":
l = "FTL"
Expand Down

0 comments on commit e285978

Please sign in to comment.