(format string, args ...any)
| 210 | } |
| 211 | |
| 212 | func (l *ZapLogger) Errorf(format string, args ...any) { |
| 213 | if l == nil || l.logger == nil { |
| 214 | return |
| 215 | } |
| 216 | l.logger.Errorf(format, args...) |
| 217 | } |
| 218 | |
| 219 | func (l *ZapLogger) Criticalf(format string, args ...any) { |
| 220 | l.log(criticalLevel, fmt.Sprintf(format, args...)) |
no outgoing calls