Merge pull request #713 from earlzo/hotfix/wrong-comment

Fixed: wrong comment for NewEntry
This commit is contained in:
Stephen Day 2018-03-29 14:30:34 -07:00 committed by GitHub
commit 6ecf50095b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ type Entry struct {
func NewEntry(logger *Logger) *Entry { func NewEntry(logger *Logger) *Entry {
return &Entry{ return &Entry{
Logger: logger, Logger: logger,
// Default is three fields, give a little extra room // Default is five fields, give a little extra room
Data: make(Fields, 5), Data: make(Fields, 5),
} }
} }