forked from mirror/logrus
Change DebugLevel color to gray
This commit is contained in:
parent
6dcec6ed3b
commit
4fbdf5948e
|
@ -15,6 +15,7 @@ const (
|
|||
green = 32
|
||||
yellow = 33
|
||||
blue = 34
|
||||
gray = 37
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -75,6 +76,8 @@ func (f *TextFormatter) Format(entry *Entry) ([]byte, error) {
|
|||
func printColored(b *bytes.Buffer, entry *Entry, keys []string) {
|
||||
var levelColor int
|
||||
switch entry.Level {
|
||||
case DebugLevel:
|
||||
levelColor = gray
|
||||
case WarnLevel:
|
||||
levelColor = yellow
|
||||
case ErrorLevel, FatalLevel, PanicLevel:
|
||||
|
|
Loading…
Reference in New Issue