logrus/text_formatter.go

289 lines
7.4 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"
"runtime"
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 (
red = 31
yellow = 33
blue = 36
gray = 37
2014-03-10 23:22:08 +00:00
)
var baseTimestamp time.Time
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
// The keys sorting function, when uninitialized it uses sort.Strings.
SortingFunc func([]string)
// 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
// CallerPrettyfier can be set by the user to modify the content
// of the function and file keys in the json data when ReportCaller is
// activated. If any of the returned value is the empty string the
// corresponding key will be removed from json fields.
CallerPrettyfier func(*runtime.Frame) (function string, file string)
terminalInitOnce 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)
if f.isTerminal {
initTerminal(entry.Logger.Out)
}
2017-02-15 13:08:26 +00:00
}
}
func (f *TextFormatter) isColored() bool {
isColored := f.ForceColors || (f.isTerminal && (runtime.GOOS != "windows"))
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
}
2017-02-15 13:08:26 +00:00
}
return isColored && !f.DisableColors
2014-03-10 23:22:08 +00:00
}
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) {
data := make(Fields)
for k, v := range entry.Data {
data[k] = v
}
prefixFieldClashes(data, f.FieldMap, entry.HasCaller())
keys := make([]string, 0, len(data))
for k := range data {
keys = append(keys, k)
}
var funcVal, fileVal string
fixedKeys := make([]string, 0, 4+len(data))
if !f.DisableTimestamp {
fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyTime))
}
fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyLevel))
if entry.Message != "" {
fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyMsg))
}
if entry.err != "" {
fixedKeys = append(fixedKeys, f.FieldMap.resolve(FieldKeyLogrusError))
}
if entry.HasCaller() {
fixedKeys = append(fixedKeys,
f.FieldMap.resolve(FieldKeyFunc), f.FieldMap.resolve(FieldKeyFile))
if f.CallerPrettyfier != nil {
funcVal, fileVal = f.CallerPrettyfier(entry.Caller)
} else {
funcVal = entry.Caller.Function
fileVal = fmt.Sprintf("%s:%d", entry.Caller.File, entry.Caller.Line)
}
}
if !f.DisableSorting {
if f.SortingFunc == nil {
sort.Strings(keys)
fixedKeys = append(fixedKeys, keys...)
} else {
if !f.isColored() {
fixedKeys = append(fixedKeys, keys...)
f.SortingFunc(fixedKeys)
} else {
f.SortingFunc(keys)
}
}
} else {
fixedKeys = append(fixedKeys, keys...)
}
var b *bytes.Buffer
if entry.Buffer != nil {
b = entry.Buffer
} else {
b = &bytes.Buffer{}
}
2014-03-10 23:22:08 +00:00
f.terminalInitOnce.Do(func() { f.init(entry) })
2014-03-10 23:22:08 +00:00
timestampFormat := f.TimestampFormat
if timestampFormat == "" {
2017-07-26 12:26:30 +00:00
timestampFormat = defaultTimestampFormat
}
if f.isColored() {
2018-11-06 10:01:28 +00:00
f.printColored(b, entry, keys, data, timestampFormat)
} else {
for _, key := range fixedKeys {
var value interface{}
switch {
case key == f.FieldMap.resolve(FieldKeyTime):
value = entry.Time.Format(timestampFormat)
case key == f.FieldMap.resolve(FieldKeyLevel):
value = entry.Level.String()
case key == f.FieldMap.resolve(FieldKeyMsg):
value = entry.Message
case key == f.FieldMap.resolve(FieldKeyLogrusError):
value = entry.err
case key == f.FieldMap.resolve(FieldKeyFunc) && entry.HasCaller():
value = funcVal
case key == f.FieldMap.resolve(FieldKeyFile) && entry.HasCaller():
value = fileVal
default:
value = data[key]
}
f.appendKeyValue(b, key, value)
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, data Fields, timestampFormat string) {
var levelColor int
switch entry.Level {
2017-10-20 12:40:54 +00:00
case DebugLevel, TraceLevel:
2015-02-20 15:32:47 +00:00
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")
caller := ""
2016-11-30 23:15:38 +00:00
if entry.HasCaller() {
funcVal := fmt.Sprintf("%s()", entry.Caller.Function)
fileVal := fmt.Sprintf("%s:%d", entry.Caller.File, entry.Caller.Line)
if f.CallerPrettyfier != nil {
funcVal, fileVal = f.CallerPrettyfier(entry.Caller)
}
caller = fileVal + " " + funcVal
}
if f.DisableTimestamp {
fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m%s %-44s ", levelColor, levelText, caller, entry.Message)
} else if !f.FullTimestamp {
fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m[%04d]%s %-44s ", levelColor, levelText, int(entry.Time.Sub(baseTimestamp)/time.Second), caller, entry.Message)
} else {
fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m[%s]%s %-44s ", levelColor, levelText, entry.Time.Format(timestampFormat), caller, entry.Message)
}
for _, k := range keys {
v := 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))
}
}