mirror of https://github.com/minio/minio.git
Removes capitalization of error causes (#5468)
This commit is contained in:
parent
3ea28e9771
commit
e608e05cda
|
@ -172,7 +172,8 @@ func logIf(level Level, err error, msg string,
|
||||||
if err == nil || isErrIgnored(err) {
|
if err == nil || isErrIgnored(err) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
cause := strings.Title(err.Error())
|
// Get the cause for the Error
|
||||||
|
cause := err.Error()
|
||||||
// Get full stack trace
|
// Get full stack trace
|
||||||
trace := getTrace(3)
|
trace := getTrace(3)
|
||||||
// Get time
|
// Get time
|
||||||
|
|
Loading…
Reference in New Issue