mirror of https://github.com/docker/docs.git
Merge pull request #18741 from WeiZhang555/debug-info
Better debug message for post form data
This commit is contained in:
commit
47060efdb7
|
@ -38,7 +38,12 @@ func debugRequestMiddleware(handler httputils.APIFunc) httputils.APIFunc {
|
||||||
if _, exists := postForm["password"]; exists {
|
if _, exists := postForm["password"]; exists {
|
||||||
postForm["password"] = "*****"
|
postForm["password"] = "*****"
|
||||||
}
|
}
|
||||||
logrus.Debugf("form data: %q", postForm)
|
formStr, errMarshal := json.Marshal(postForm)
|
||||||
|
if errMarshal == nil {
|
||||||
|
logrus.Debugf("form data: %s", string(formStr))
|
||||||
|
} else {
|
||||||
|
logrus.Debugf("form data: %q", postForm)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue