(args ...any)
| 21 | } |
| 22 | |
| 23 | func (l *ghostLogger) Debug(args ...any) { |
| 24 | slog.DebugContext(l.ctx, fmt.Sprintf(args[0].(string), args[1:]...)) |
| 25 | } |
| 26 | |
| 27 | func (l *ghostLogger) Debugf(format string, args ...any) { |
| 28 | slog.DebugContext(l.ctx, fmt.Sprintf(format, args...)) |
no outgoing calls
no test coverage detected