1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

added better error message

This commit is contained in:
Ken Cochrane 2013-03-15 15:04:36 -07:00
parent 27ad71e025
commit c4640689af

View file

@ -107,7 +107,7 @@ func Login(authConfig AuthConfig) (string, error) {
defer req1.Body.Close()
reqBody, err = ioutil.ReadAll(req1.Body)
if err != nil {
errMsg = fmt.Sprintf("Server Error: [%s] %s", reqStatusCode, err)
errMsg = fmt.Sprintf("Server Error: [%#v] %s", reqStatusCode, err)
return "", errors.New(errMsg)
}