parent
a348af74fa
commit
d73ab781fe
@ -0,0 +1,17 @@
|
||||
package log
|
||||
|
||||
import "context"
|
||||
|
||||
type Logger interface {
|
||||
Debug(ctx context.Context, msg string, keysAndValues ...interface{})
|
||||
Info(ctx context.Context, msg string, keysAndValues ...interface{})
|
||||
Warn(ctx context.Context, msg string, err error, keysAndValues ...interface{})
|
||||
Error(ctx context.Context, msg string, err error, keysAndValues ...interface{})
|
||||
WithValues(keysAndValues ...interface{}) LogrusLogger
|
||||
WithName(name string) LogrusLogger
|
||||
WithCallDepth(depth int) LogrusLogger
|
||||
|
||||
WithItemSampler() LogrusLogger
|
||||
// WithoutSampler returns the original logger without sampling
|
||||
WithoutSampler() LogrusLogger
|
||||
}
|
Loading…
Reference in new issue