mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 04:17:38 +03:00
24 lines
574 B
Go
24 lines
574 B
Go
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)
|
|
}
|