Make FATAL red too

This commit is contained in:
Derek Collison
2015-01-09 19:11:41 -08:00
parent b2eca2ced4
commit 58c7ded5d3

View File

@@ -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")
}