Logw logs a message with some additional context. The variadic key-value pairs are treated as they are in With.
(lvl zapcore.Level, msg string, keysAndValues ...interface{})
| 238 | // Logw logs a message with some additional context. The variadic key-value |
| 239 | // pairs are treated as they are in With. |
| 240 | func (s *SugaredLogger) Logw(lvl zapcore.Level, msg string, keysAndValues ...interface{}) { |
| 241 | s.log(lvl, msg, nil, keysAndValues) |
| 242 | } |
| 243 | |
| 244 | // Debugw logs a message with some additional context. The variadic key-value |
| 245 | // pairs are treated as they are in With. |