Warnw logs a message with some additional context. The variadic key-value pairs are treated as they are in With.
(msg string, keysAndValues ...interface{})
| 260 | // Warnw logs a message with some additional context. The variadic key-value |
| 261 | // pairs are treated as they are in With. |
| 262 | func (s *SugaredLogger) Warnw(msg string, keysAndValues ...interface{}) { |
| 263 | s.log(WarnLevel, msg, nil, keysAndValues) |
| 264 | } |
| 265 | |
| 266 | // Errorw logs a message with some additional context. The variadic key-value |
| 267 | // pairs are treated as they are in With. |