Debug logs the msg and fields at LevelDebug.
(ctx context.Context, msg string, fields ...Field)
| 81 | |
| 82 | // Debug logs the msg and fields at LevelDebug. |
| 83 | func (l Logger) Debug(ctx context.Context, msg string, fields ...Field) { |
| 84 | l.log(ctx, LevelDebug, msg, fields) |
| 85 | } |
| 86 | |
| 87 | // Info logs the msg and fields at LevelInfo. |
| 88 | func (l Logger) Info(ctx context.Context, msg string, fields ...Field) { |