summaryrefslogtreecommitdiff
path: root/plugins/logger
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-05-27 19:59:04 +0300
committerValery Piashchynski <[email protected]>2021-05-27 19:59:04 +0300
commite701d4d97fbbc7551e5d931731890933687ca8cd (patch)
tree8161a022a5b74ce6660ed154344134ec493c3f74 /plugins/logger
parent1ee9f178f95c777d60afae4ac3a74e6134001e27 (diff)
- Update Makefile
- Update arch diagram Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/logger')
-rw-r--r--plugins/logger/interface.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/logger/interface.go b/plugins/logger/interface.go
index 5bb2143b..827f9821 100644
--- a/plugins/logger/interface.go
+++ b/plugins/logger/interface.go
@@ -8,7 +8,7 @@ type Logger interface {
Error(msg string, keyvals ...interface{})
}
-// With creates a child logger and adds structured context to it
+// WithLogger creates a child logger and adds structured context to it
type WithLogger interface {
With(keyvals ...interface{}) Logger
}