mirror of https://github.com/sirupsen/logrus.git
Allows overriding Entry.Time.
This commit is contained in:
parent
e3292c4c4d
commit
52b92f5b89
9
entry.go
9
entry.go
|
@ -90,7 +90,16 @@ func (entry *Entry) WithFields(fields Fields) *Entry {
|
|||
// race conditions will occur when using multiple goroutines
|
||||
func (entry Entry) log(level Level, msg string) {
|
||||
var buffer *bytes.Buffer
|
||||
|
||||
// Default to now, but allow users to override if they want.
|
||||
//
|
||||
// We don't have to worry about polluting future calls to Entry#log()
|
||||
// with this assignment because this function is declared with a
|
||||
// non-pointer receiver.
|
||||
if entry.Time.IsZero() {
|
||||
entry.Time = time.Now()
|
||||
}
|
||||
|
||||
entry.Level = level
|
||||
entry.Message = msg
|
||||
|
||||
|
|
Loading…
Reference in New Issue