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 want to skip the logging of the body response for certain URLs, but using a ResponseFilter I don't have any information about the request into the HttpResponse object. Am I missing something? Wouldn't it be better for the object HttpResponse to carry the relative HttpRequest that originated it?
Is there any workaround I can use?
.responseFilter(new ResponseFilter() { @OverRide public HttpResponse filter(HttpResponse response) {
//Filter only specific responses by URL
return response.withoutBody();
}
})
The text was updated successfully, but these errors were encountered:
I want to skip the logging of the body response for certain URLs, but using a ResponseFilter I don't have any information about the request into the HttpResponse object. Am I missing something? Wouldn't it be better for the object HttpResponse to carry the relative HttpRequest that originated it?
Is there any workaround I can use?
The text was updated successfully, but these errors were encountered: