mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 03:47:38 +03:00
Add nop logger
This commit is contained in:
parent
99737e617d
commit
44534566a3
1 changed files with 53 additions and 0 deletions
53
common/logger/nop.go
Normal file
53
common/logger/nop.go
Normal file
|
@ -0,0 +1,53 @@
|
|||
package logger
|
||||
|
||||
import (
|
||||
"context"
|
||||
)
|
||||
|
||||
func NOP() ContextLogger {
|
||||
return (*nopLogger)(nil)
|
||||
}
|
||||
|
||||
type nopLogger struct{}
|
||||
|
||||
func (f *nopLogger) Trace(args ...any) {
|
||||
}
|
||||
|
||||
func (f *nopLogger) Debug(args ...any) {
|
||||
}
|
||||
|
||||
func (f *nopLogger) Info(args ...any) {
|
||||
}
|
||||
|
||||
func (f *nopLogger) Warn(args ...any) {
|
||||
}
|
||||
|
||||
func (f *nopLogger) Error(args ...any) {
|
||||
}
|
||||
|
||||
func (f *nopLogger) Fatal(args ...any) {
|
||||
}
|
||||
|
||||
func (f *nopLogger) Panic(args ...any) {
|
||||
}
|
||||
|
||||
func (f *nopLogger) TraceContext(ctx context.Context, args ...any) {
|
||||
}
|
||||
|
||||
func (f *nopLogger) DebugContext(ctx context.Context, args ...any) {
|
||||
}
|
||||
|
||||
func (f *nopLogger) InfoContext(ctx context.Context, args ...any) {
|
||||
}
|
||||
|
||||
func (f *nopLogger) WarnContext(ctx context.Context, args ...any) {
|
||||
}
|
||||
|
||||
func (f *nopLogger) ErrorContext(ctx context.Context, args ...any) {
|
||||
}
|
||||
|
||||
func (f *nopLogger) FatalContext(ctx context.Context, args ...any) {
|
||||
}
|
||||
|
||||
func (f *nopLogger) PanicContext(ctx context.Context, args ...any) {
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue