summaryrefslogtreecommitdiff
path: root/interfaces/log/interface.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-12-21 19:42:23 +0300
committerValery Piashchynski <[email protected]>2020-12-21 19:42:23 +0300
commitee8b4075c0f836d698d1ae505c87c17147de447a (patch)
tree531d980e5bfb94ee39b03952a97e0445f7955409 /interfaces/log/interface.go
parent0ad45031047bb479e06ce0a0f496c6db9b2641c9 (diff)
Move plugins to the roadrunner-plugins repository
Diffstat (limited to 'interfaces/log/interface.go')
-rw-r--r--interfaces/log/interface.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/interfaces/log/interface.go b/interfaces/log/interface.go
deleted file mode 100644
index e2f2ce31..00000000
--- a/interfaces/log/interface.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package log
-
-type (
- // Logger is an general RR log interface
- Logger interface {
- Debug(msg string, keyvals ...interface{})
- Info(msg string, keyvals ...interface{})
- Warn(msg string, keyvals ...interface{})
- Error(msg string, keyvals ...interface{})
- }
-)
-
-// With creates a child logger and adds structured context to it
-type WithLogger interface {
- With(keyvals ...interface{}) Logger
-}