Fatalw logs at fatal level with a message and key/value pairs, then terminates the process.
(msg string, keysAndValues ...any)
| 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) { |
| 252 | l.privateLogw(LevelFatal, msg, keysAndValues) |
| 253 | } |
| 254 | |
| 255 | // Panicw logs at panic level with a message and key/value pairs, then panics. |
| 256 | func (l *defaultLogger) Panicw(msg string, keysAndValues ...any) { |
nothing calls this directly
no test coverage detected