mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
log error message when receiving an unexpected type error
Signed-off-by: tonic <tonicbupt@gmail.com>
This commit is contained in:
parent
c09789c114
commit
24aaa7f8c9
1 changed files with 3 additions and 3 deletions
|
@ -100,10 +100,10 @@ func FromStatusCode(err error, statusCode int) error {
|
|||
err = System(err)
|
||||
}
|
||||
default:
|
||||
logrus.WithFields(logrus.Fields{
|
||||
logrus.WithError(err).WithFields(logrus.Fields{
|
||||
"module": "api",
|
||||
"status_code": fmt.Sprintf("%d", statusCode),
|
||||
}).Debugf("FIXME: Got an status-code for which error does not match any expected type!!!: %d", statusCode)
|
||||
"status_code": statusCode,
|
||||
}).Debug("FIXME: Got an status-code for which error does not match any expected type!!!")
|
||||
|
||||
switch {
|
||||
case statusCode >= 200 && statusCode < 400:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue