You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to PUT request with large body as upload file, debug logger request body by "Body: r.fmtBodyString(c.debugBodySizeLimit)" , it will logger fmt.Sprintf("***** REQUEST TOO LARGE (size - %d) *****", bodySize) where body is too large, but REQUEST(curl) will logger full body.
The text was updated successfully, but these errors were encountered:
@BoneAsh Thanks for reaching out. CURL command logging requires the entire body. However, it can be a bad experience for users who only need debug logging.
I'm planning to implement another option as part of #828 to separate it like this -
Debug log (same as before the CURL command feature was added)
I need to PUT request with large body as upload file, debug logger request body by "Body: r.fmtBodyString(c.debugBodySizeLimit)" , it will logger fmt.Sprintf("***** REQUEST TOO LARGE (size - %d) *****", bodySize) where body is too large, but REQUEST(curl) will logger full body.
The text was updated successfully, but these errors were encountered: