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)
}