Debugw logs at debug level with a message and key/value pairs.
(msg string, keysAndValues ...any)
| 229 | |
| 230 | // Debugw logs at debug level with a message and key/value pairs. |
| 231 | func (l *defaultLogger) Debugw(msg string, keysAndValues ...any) { |
| 232 | l.privateLogw(LevelDebug, msg, keysAndValues) |
| 233 | } |
| 234 | |
| 235 | // Infow logs at info level with a message and key/value pairs. |
| 236 | func (l *defaultLogger) Infow(msg string, keysAndValues ...any) { |
nothing calls this directly
no test coverage detected