(ctx context.Context, msg string)
| 11 | |
| 12 | func (s SlogLogger) Debug(ctx context.Context, msg string) { slog.DebugContext(ctx, msg) } |
| 13 | func (s SlogLogger) Info(ctx context.Context, msg string) { slog.InfoContext(ctx, msg) } |
| 14 | func (s SlogLogger) Warn(ctx context.Context, msg string) { slog.WarnContext(ctx, msg) } |
| 15 | func (s SlogLogger) Error(ctx context.Context, msg string) { slog.ErrorContext(ctx, msg) } |
| 16 |
nothing calls this directly
no outgoing calls
no test coverage detected