one more linter error fixed

This commit is contained in:
David Bariod 2020-11-08 07:19:28 +01:00
parent e328a4e3f4
commit 89b92b94dd
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ func (f *JSONFormatter) Format(entry *Entry) ([]byte, error) {
encoder.SetIndent("", " ")
}
if err := encoder.Encode(data); err != nil {
return nil, fmt.Errorf("failed to marshal fields to JSON, %v", err)
return nil, fmt.Errorf("failed to marshal fields to JSON, %w", err)
}
return b.Bytes(), nil