WithFields creates a log entry with the given fields
(fields Fields)
| 62 | |
| 63 | // WithFields creates a log entry with the given fields |
| 64 | func WithFields(fields Fields) Entry { |
| 65 | return newEntry(fields) |
| 66 | } |
| 67 | |
| 68 | // SetLevel sets the global log level |
| 69 | func SetLevel(level string) { |
no test coverage detected