Add logger interface

This commit is contained in:
世界 2022-08-19 12:18:23 +08:00
parent 2424b1e2fa
commit 35c336a016
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

24
common/logger/logger.go Normal file
View file

@ -0,0 +1,24 @@
package logger
import "context"
type Logger interface {
Trace(args ...any)
Debug(args ...any)
Info(args ...any)
Warn(args ...any)
Error(args ...any)
Fatal(args ...any)
Panic(args ...any)
}
type ContextLogger interface {
Logger
TraceContext(ctx context.Context, args ...any)
DebugContext(ctx context.Context, args ...any)
InfoContext(ctx context.Context, args ...any)
WarnContext(ctx context.Context, args ...any)
ErrorContext(ctx context.Context, args ...any)
FatalContext(ctx context.Context, args ...any)
PanicContext(ctx context.Context, args ...any)
}