logger helper to pass down it via context (#1180)
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
parent
ca1d0b94c3
commit
c706afcf04
14
logger/context.go
Normal file
14
logger/context.go
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
package logger
|
||||||
|
|
||||||
|
import "context"
|
||||||
|
|
||||||
|
type loggerKey struct{}
|
||||||
|
|
||||||
|
func FromContext(ctx context.Context) (Logger, bool) {
|
||||||
|
l, ok := ctx.Value(loggerKey{}).(Logger)
|
||||||
|
return l, ok
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewContext(ctx context.Context, l Logger) context.Context {
|
||||||
|
return context.WithValue(ctx, loggerKey{}, l)
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user