build: upgrade dependencies

This commit is contained in:
2021-09-01 19:40:58 +02:00
parent d82292f755
commit 6cf77035fe
113 changed files with 10521 additions and 1863 deletions

View File

@ -402,7 +402,7 @@ func (f *MyJSONFormatter) Format(entry *Entry) ([]byte, error) {
// source of the official loggers.
serialized, err := json.Marshal(entry.Data)
if 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 append(serialized, '\n'), nil
}