(a ...any)
| 43 | } |
| 44 | |
| 45 | func (c ConditionalLogger) Debug(a ...any) ElseBranch { |
| 46 | return c.logArgs(slog.LevelDebug, a...) |
| 47 | } |
| 48 | |
| 49 | func (c ConditionalLogger) Errorf(format string, a ...any) ElseBranch { |
| 50 | return c.logf(slog.LevelError, format, a...) |