(format string, args ...any)
| 52 | } |
| 53 | |
| 54 | func (l *ghostLogger) Errorf(format string, args ...any) error { |
| 55 | slog.ErrorContext(l.ctx, fmt.Sprintf(format, args...)) |
| 56 | return errors.Errorf(format, args...) |
| 57 | } |
| 58 | |
| 59 | func (l *ghostLogger) Errore(err error) error { |
| 60 | if err != nil { |
no outgoing calls