summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/apex/log/interface.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/apex/log/interface.go')
-rw-r--r--vendor/github.com/apex/log/interface.go22
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/github.com/apex/log/interface.go b/vendor/github.com/apex/log/interface.go
new file mode 100644
index 00000000..9daa0465
--- /dev/null
+++ b/vendor/github.com/apex/log/interface.go
@@ -0,0 +1,22 @@
+package log
+
+import "time"
+
+// Interface represents the API of both Logger and Entry.
+type Interface interface {
+ WithFields(Fielder) *Entry
+ WithField(string, interface{}) *Entry
+ WithDuration(time.Duration) *Entry
+ WithError(error) *Entry
+ Debug(string)
+ Info(string)
+ Warn(string)
+ Error(string)
+ Fatal(string)
+ Debugf(string, ...interface{})
+ Infof(string, ...interface{})
+ Warnf(string, ...interface{})
+ Errorf(string, ...interface{})
+ Fatalf(string, ...interface{})
+ Trace(string) *Entry
+}