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"
|
2017-07-27 15:23:27 +03:00
|
|
|
"io"
|
|
|
|
"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"
|
2017-07-27 15:23:27 +03:00
|
|
|
|
|
|
|
"golang.org/x/crypto/ssh/terminal"
|
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
|
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
|
|
|
|
|
|
|
// 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
|
|
|
|
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
|
|
|
|
|
|
|
|
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-07-27 15:23:27 +03:00
|
|
|
f.isTerminal = f.checkIfTerminal(entry.Logger.Out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *TextFormatter) checkIfTerminal(w io.Writer) bool {
|
|
|
|
switch v := w.(type) {
|
|
|
|
case *os.File:
|
|
|
|
return terminal.IsTerminal(int(v.Fd()))
|
|
|
|
default:
|
|
|
|
return false
|
2017-02-15 16:08:26 +03: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) {
|
2016-06-18 16:47:44 +03:00
|
|
|
var b *bytes.Buffer
|
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
|
|
|
|
|
|
|
if !f.DisableSorting {
|
|
|
|
sort.Strings(keys)
|
|
|
|
}
|
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
|
|
|
|
2014-12-10 05:53:40 +03:00
|
|
|
prefixFieldClashes(entry.Data)
|
2014-07-27 05:26:04 +04:00
|
|
|
|
2017-02-15 16:08:26 +03:00
|
|
|
f.Do(func() { f.init(entry) })
|
2017-02-05 17:21:03 +03:00
|
|
|
|
|
|
|
isColored := (f.ForceColors || f.isTerminal) && !f.DisableColors
|
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
|
|
|
}
|
2014-09-17 04:19:42 +04:00
|
|
|
if isColored {
|
2015-07-20 20:43:12 +03:00
|
|
|
f.printColored(b, entry, keys, timestampFormat)
|
2014-03-14 21:01:06 +04:00
|
|
|
} else {
|
2014-12-15 22:02:02 +03:00
|
|
|
if !f.DisableTimestamp {
|
2015-07-17 04:02:46 +03:00
|
|
|
f.appendKeyValue(b, "time", entry.Time.Format(timestampFormat))
|
2014-12-15 22:02:02 +03:00
|
|
|
}
|
2015-01-15 21:40:48 +03:00
|
|
|
f.appendKeyValue(b, "level", entry.Level.String())
|
2015-06-20 03:20:59 +03:00
|
|
|
if entry.Message != "" {
|
|
|
|
f.appendKeyValue(b, "msg", entry.Message)
|
|
|
|
}
|
2014-09-17 04:19:42 +04:00
|
|
|
for _, key := range keys {
|
2015-01-15 21:40:48 +03:00
|
|
|
f.appendKeyValue(b, key, entry.Data[key])
|
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 {
|
2015-02-20 18:32:47 +03:00
|
|
|
case DebugLevel:
|
|
|
|
levelColor = gray
|
2014-09-17 04:19:42 +04:00
|
|
|
case WarnLevel:
|
|
|
|
levelColor = yellow
|
|
|
|
case ErrorLevel, FatalLevel, PanicLevel:
|
|
|
|
levelColor = red
|
|
|
|
default:
|
|
|
|
levelColor = blue
|
|
|
|
}
|
|
|
|
|
|
|
|
levelText := strings.ToUpper(entry.Level.String())[0:4]
|
|
|
|
|
2016-08-25 00:59:41 +03:00
|
|
|
if f.DisableTimestamp {
|
|
|
|
fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m %-44s ", levelColor, levelText, entry.Message)
|
|
|
|
} else if !f.FullTimestamp {
|
2017-01-11 08:43:36 +03:00
|
|
|
fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m[%04d] %-44s ", levelColor, levelText, int(entry.Time.Sub(baseTimestamp)/time.Second), entry.Message)
|
2015-02-20 19:43:24 +03:00
|
|
|
} else {
|
2015-07-20 20:43:12 +03:00
|
|
|
fmt.Fprintf(b, "\x1b[%dm%s\x1b[0m[%s] %-44s ", levelColor, levelText, entry.Time.Format(timestampFormat), 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
|
|
|
}
|