aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/felix/logger/options.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/felix/logger/options.go')
-rw-r--r--vendor/github.com/felix/logger/options.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/vendor/github.com/felix/logger/options.go b/vendor/github.com/felix/logger/options.go
deleted file mode 100644
index e0347b5..0000000
--- a/vendor/github.com/felix/logger/options.go
+++ /dev/null
@@ -1,16 +0,0 @@
-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
-}