WithTime add time fields to log entry.
(t time.Time)
| 259 | |
| 260 | // WithTime add time fields to log entry. |
| 261 | func WithTime(t time.Time) *Entry { |
| 262 | return (*Entry)(logrus.WithTime(t)) |
| 263 | } |
| 264 | |
| 265 | // Debug logs a message at level Debug on the standard logger. |
| 266 | func Debug(args ...interface{}) { |