WithField implements log.Interface.
(name string, val any)
| 132 | |
| 133 | // WithField implements log.Interface. |
| 134 | func (l *Logger) WithField(name string, val any) Interface { |
| 135 | return l.entry().WithField(name, val) |
| 136 | } |
| 137 | |
| 138 | // WithFields implements log.Interface. |
| 139 | func (l *Logger) WithFields(fields Fielder) Interface { |