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