fix example

This commit is contained in:
Neil Isaac 2017-11-21 22:56:37 -05:00 committed by GitHub
parent bf1fb70b2b
commit b9eceae8f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -62,11 +62,11 @@ type TextFormatter struct {
// FieldMap allows users to customize the names of keys for default fields.
// As an example:
// formatter := &JSONFormatter{
// formatter := &TextFormatter{
// FieldMap: FieldMap{
// FieldKeyTime: "@timestamp",
// FieldKeyTime: "@timestamp",
// FieldKeyLevel: "@level",
// FieldKeyMsg: "@message"}}
// FieldKeyMsg: "@message"}}
FieldMap FieldMap
sync.Once