Warnw logs at warn level with a message and key/value pairs.
(msg string, keysAndValues ...any)
| 239 | |
| 240 | // Warnw logs at warn level with a message and key/value pairs. |
| 241 | func (l *defaultLogger) Warnw(msg string, keysAndValues ...any) { |
| 242 | l.privateLogw(LevelWarn, msg, keysAndValues) |
| 243 | } |
| 244 | |
| 245 | // Errorw logs at error level with a message and key/value pairs. |
| 246 | func (l *defaultLogger) Errorw(msg string, keysAndValues ...any) { |
nothing calls this directly
no test coverage detected