Errorw logs at error level with a message and key/value pairs.
(msg string, keysAndValues ...any)
| 244 | |
| 245 | // Errorw logs at error level with a message and key/value pairs. |
| 246 | func (l *defaultLogger) Errorw(msg string, keysAndValues ...any) { |
| 247 | l.privateLogw(LevelError, msg, keysAndValues) |
| 248 | } |
| 249 | |
| 250 | // Fatalw logs at fatal level with a message and key/value pairs, then terminates the process. |
| 251 | func (l *defaultLogger) Fatalw(msg string, keysAndValues ...any) { |
nothing calls this directly
no test coverage detected