Info logs a message at InfoLevel. The message includes any fields passed at the log site, as well as any fields accumulated on the logger. Deprecated: Use Ctx(ctx).Info instead.
(msg string, fields ...zap.Field)
| 37 | // at the log site, as well as any fields accumulated on the logger. |
| 38 | // Deprecated: Use Ctx(ctx).Info instead. |
| 39 | func Info(msg string, fields ...zap.Field) { |
| 40 | L().Info(msg, fields...) |
| 41 | } |
| 42 | |
| 43 | // Warn logs a message at WarnLevel. The message includes any fields passed |
| 44 | // at the log site, as well as any fields accumulated on the logger. |
searching dependent graphs…