logrus/text_formatter.go

218 lines
5.2 KiB
Go
Raw Normal View History

2014-03-10 23:22:08 +00:00
package logrus
import (
"bytes"
2014-03-10 23:22:08 +00:00
"fmt"
"os"
2014-03-10 23:22:08 +00:00
"sort"
"strings"
2017-02-06 00:10:19 +00:00
"sync"
"time"
2014-03-10 23:22:08 +00:00
)
const (
nocolor = 0
red = 31
green = 32
yellow = 33
2016-08-23 17:23:35 +00:00
blue = 36
2015-02-20 15:32:47 +00:00
gray = 37
2014-03-10 23:22:08 +00:00
)
var (
baseTimestamp time.Time
emptyFieldMap FieldMap
)
func init() {
baseTimestamp = time.Now()
}
2017-07-26 12:26:30 +00:00
// TextFormatter formats logs into text
2014-03-10 23:22:08 +00:00
type TextFormatter struct {
// Set to true to bypass checking for a TTY before outputting colors.
2015-02-25 19:01:02 +00:00
ForceColors bool
// Force disabling colors.
DisableColors bool
2015-02-25 19:01:02 +00:00
// Override coloring based on CLICOLOR and CLICOLOR_FORCE. - https://bixense.com/clicolors/
2018-08-09 13:00:46 +00:00
EnvironmentOverrideColors bool
2015-02-25 19:01:02 +00:00
// Disable timestamp logging. useful when output is redirected to logging
// system that already adds timestamps.
DisableTimestamp bool
2015-02-25 19:01:02 +00:00
// Enable logging the full timestamp when a TTY is attached instead of just
// the time passed since beginning of execution.
FullTimestamp bool
// TimestampFormat to use for display when a full timestamp is printed
TimestampFormat string
// The fields are sorted by default for a consistent output. For applications
// that log extremely frequently and don't use the JSON formatter this may not
// be desired.
DisableSorting bool
2017-02-05 14:21:03 +00:00
// Disables the truncation of the level text to 4 characters.
DisableLevelTruncation bool
2018-01-24 04:04:29 +00:00
// QuoteEmptyFields will wrap empty fields in quotes if true
QuoteEmptyFields bool
2017-02-05 14:21:03 +00:00
// Whether the logger's out is to a terminal
isTerminal bool
2017-11-22 03:43:47 +00:00
// FieldMap allows users to customize the names of keys for default fields.
// As an example:
2017-11-22 03:56:37 +00:00
// formatter := &TextFormatter{
2017-11-22 03:43:47 +00:00
// FieldMap: FieldMap{
2017-11-22 03:56:37 +00:00
// FieldKeyTime: "@timestamp",
2017-11-22 03:43:47 +00:00
// FieldKeyLevel: "@level",
2017-11-22 03:56:37 +00:00
// FieldKeyMsg: "@message"}}
2017-11-22 03:43:47 +00:00
FieldMap FieldMap
sync.Once
2014-03-10 23:22:08 +00:00
}
2017-02-15 13:08:26 +00:00
func (f *TextFormatter) init(entry *Entry) {
if entry.Logger != nil {
f.isTerminal = checkIfTerminal(entry.Logger.Out)
2017-02-15 13:08:26 +00:00
}
}
func (f *TextFormatter) isColored() bool {
isColored := f.ForceColors || f.isTerminal
2018-08-09 13:00:46 +00:00
if f.EnvironmentOverrideColors {
if force, ok := os.LookupEnv("CLICOLOR_FORCE"); ok && force != "0" {
isColored = true
2018-08-09 13:00:46 +00:00
} else if ok && force == "0" {
isColored = false
} else if os.Getenv("CLICOLOR") == "0" {
isColored = false
}
}
return isColored && !f.DisableColors
}
2017-07-26 12:26:30 +00:00
// Format renders a single log entry
2014-03-10 23:22:08 +00:00
func (f *TextFormatter) Format(entry *Entry) ([]byte, error) {
prefixFieldClashes(entry.Data, f.FieldMap)
2017-01-11 18:19:12 +00:00
keys := make([]string, 0, len(entry.Data))
for k := range entry.Data {
keys = append(keys, k)
}
if !f.DisableSorting {
sort.Strings(keys)
}
var b *bytes.Buffer
if entry.Buffer != nil {
b = entry.Buffer
} else {
b = &bytes.Buffer{}
}
2014-03-10 23:22:08 +00:00
2017-02-15 13:08:26 +00:00
f.Do(func() { f.init(entry) })
2017-02-05 14:21:03 +00:00
timestampFormat := f.TimestampFormat
if timestampFormat == "" {
2017-07-26 12:26:30 +00:00
timestampFormat = defaultTimestampFormat
}
if f.isColored() {
f.printColored(b, entry, keys, timestampFormat)
} else {
if !f.DisableTimestamp {
2017-11-22 03:43:47 +00:00
f.appendKeyValue(b, f.FieldMap.resolve(FieldKeyTime), entry.Time.Format(timestampFormat))
}
2017-11-22 03:43:47 +00:00
f.appendKeyValue(b, f.FieldMap.resolve(FieldKeyLevel), entry.Level.String())
if entry.Message != "" {
2017-11-22 03:43:47 +00:00
f.appendKeyValue(b, f.FieldMap.resolve(FieldKeyMsg), entry.Message)
}
for _, key := range keys {
f.appendKeyValue(b, key, entry.Data[key])
2014-03-10 23:22:08 +00:00
}
}
b.WriteByte('\n')
return b.Bytes(), nil
2014-03-10 23:22:08 +00:00
}
func (f *TextFormatter) printColored(b *bytes.Buffer, entry *Entry, keys []string, timestampFormat string) {
var levelColor int
switch entry.Level {
2015-02-20 15:32:47 +00:00
case DebugLevel:
levelColor = gray
case WarnLevel:
levelColor = yellow
case ErrorLevel, FatalLevel, PanicLevel:
levelColor = red
default:
levelColor = blue
}
levelText := strings.ToUpper(entry.Level.String())
if !f.DisableLevelTruncation {
levelText = levelText[0:4]
}
// Remove a single newline if it already exists in the message to keep
// the behavior of logrus text_formatter the same as the stdlib log package
entry.Message = strings.TrimSuffix(entry.Message, "\n")
if f.DisableTimestamp {
fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m %-44s ", levelColor, levelText, entry.Message)
} else if !f.FullTimestamp {
fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m[%04d] %-44s ", levelColor, levelText, int(entry.Time.Sub(baseTimestamp)/time.Second), entry.Message)
} else {
fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m[%s] %-44s ", levelColor, levelText, entry.Time.Format(timestampFormat), entry.Message)
}
for _, k := range keys {
v := entry.Data[k]
fmt.Fprintf(b, " \x1b[%dm%s\x1b[0m=", levelColor, k)
f.appendValue(b, v)
}
}
func (f *TextFormatter) needsQuoting(text string) bool {
if f.QuoteEmptyFields && len(text) == 0 {
return true
}
2014-12-18 14:09:01 +00:00
for _, ch := range text {
if !((ch >= 'a' && ch <= 'z') ||
(ch >= 'A' && ch <= 'Z') ||
2015-03-04 14:04:50 +00:00
(ch >= '0' && ch <= '9') ||
ch == '-' || ch == '.' || ch == '_' || ch == '/' || ch == '@' || ch == '^' || ch == '+') {
return true
2014-12-18 14:09:01 +00:00
}
}
return false
2014-12-18 14:09:01 +00:00
}
func (f *TextFormatter) appendKeyValue(b *bytes.Buffer, key string, value interface{}) {
if b.Len() > 0 {
b.WriteByte(' ')
}
b.WriteString(key)
b.WriteByte('=')
f.appendValue(b, value)
}
func (f *TextFormatter) appendValue(b *bytes.Buffer, value interface{}) {
2017-07-12 15:33:04 +00:00
stringVal, ok := value.(string)
if !ok {
2017-07-12 15:16:13 +00:00
stringVal = fmt.Sprint(value)
}
if !f.needsQuoting(stringVal) {
b.WriteString(stringVal)
} else {
b.WriteString(fmt.Sprintf("%q", stringVal))
}
}