Removes capitalization of error causes (#5468)

master
ebozduman 7 years ago committed by kannappanr
parent 3ea28e9771
commit e608e05cda
  1. 3
      cmd/logger.go

@ -172,7 +172,8 @@ func logIf(level Level, err error, msg string,
if err == nil || isErrIgnored(err) {
return
}
cause := strings.Title(err.Error())
// Get the cause for the Error
cause := err.Error()
// Get full stack trace
trace := getTrace(3)
// Get time

Loading…
Cancel
Save