core/metrics/logger/logger_generated.go
// autogenerated file
package logger
import (
"context"
"go.uber.org/zap"
)
// ExperimentalLogger ...
type ExperimentalLogger interface {
Debugw(ctx context.Context, msg string, keysAndValues ...interface{})
Debugf(ctx context.Context, template string, args ...interface{})
Infow(ctx context.Context, msg string, keysAndValues ...interface{})
Infof(ctx context.Context, template string, args ...interface{})
Warnw(ctx context.Context, msg string, keysAndValues ...interface{})
Warnf(ctx context.Context, template string, args ...interface{})
Errorw(ctx context.Context, msg string, keysAndValues ...interface{})
Errorf(ctx context.Context, template string, args ...interface{})
Dpanicf(ctx context.Context, msg string, keysAndValues ...interface{})
Dpanicw(ctx context.Context, template string, args ...interface{})
Fatalf(ctx context.Context, msg string, keysAndValues ...interface{})
Fatalw(ctx context.Context, template string, args ...interface{})
// WithOptions returns a new ExperimentalLogger with the given options applied.
WithOptions(opts ...zap.Option) ExperimentalLogger
}