WithFields add a map of fields to the Entry.
(fields Fields)
| 51 | |
| 52 | // WithFields add a map of fields to the Entry. |
| 53 | func (entry *Entry) WithFields(fields Fields) *Entry { |
| 54 | return (*Entry)((*logrus.Entry)(entry).WithFields((logrus.Fields)(fields))) |
| 55 | } |
| 56 | |
| 57 | // WithTime overrides the time of the Entry. |
| 58 | func (entry *Entry) WithTime(t time.Time) *Entry { |
no outgoing calls