aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/felix/logger/options.go
blob: e0347b52a15a31039268a515fe405d267d34056a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package logger

import "io"

// DefaultTimeFormat unless specified by options
const DefaultTimeFormat = "2006-01-02T15:04:05.000Z0700"

// Options to configure the logger
type Options struct {
	Name       string
	Level      Level
	Fields     []interface{}
	Output     io.Writer
	TimeFormat string
	Formatter  MessageWriter
}