When using WithError alog with Warn and below, the formatter leaves the error key in data, but strips the error message leaving an empty string. ``` logrus.WithError(errors.New("test")).Warn("Issues!") {"timestamp":"2009-11-10T23:00:00Z","message":"Issues !","severity":"WARNING","context":{"data":{"error":{}}}} logrus.WithError(errors.New("test")).Error("Issues!") {"timestamp":"2009-11-10T23:00:00Z","serviceContext":{},"message":"Issues!: test","severity":"ERROR","context":{"reportLocation":{"filePath":"sandbox634680707/prog.go","lineNumber":21,"functionName":"main"}}} ``` Console output
When using WithError alog with Warn and below, the formatter leaves the error key in data, but strips the error message leaving an empty string.
Console output