Skip to content

Commit

Permalink
Make FATAL red too
Browse files Browse the repository at this point in the history
  • Loading branch information
Derek Collison committed Jan 10, 2015
1 parent b2eca2c commit 58c7ded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logger/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func setColoredLabelFormats(l *Logger) {
l.infoLabel = fmt.Sprintf(colorFormat, 32, "INF")
l.debugLabel = fmt.Sprintf(colorFormat, 36, "DBG")
l.errorLabel = fmt.Sprintf(colorFormat, 31, "ERR")
l.fatalLabel = fmt.Sprintf(colorFormat, 35, "FTL")
l.fatalLabel = fmt.Sprintf(colorFormat, 31, "FTL")
l.traceLabel = fmt.Sprintf(colorFormat, 33, "TRC")
}

Expand Down

0 comments on commit 58c7ded

Please sign in to comment.