From 44534566a3d5c9b8315643008db7451cab6014fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Sun, 23 Apr 2023 16:55:34 +0800 Subject: [PATCH] Add nop logger --- common/logger/nop.go | 53 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 common/logger/nop.go diff --git a/common/logger/nop.go b/common/logger/nop.go new file mode 100644 index 0000000..cd630d1 --- /dev/null +++ b/common/logger/nop.go @@ -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) { +}