-
Notifications
You must be signed in to change notification settings - Fork 264
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to log request body instead of <multipart>? #273
Comments
The default |
Can you give me an example how to make @bean RawRequestFilter cause I'm not sure how to use replaceBody when I need to save that body not replace it with some string. I'm using logbook-spring-boot-starter. |
That should do the trick. @Bean
public RawRequestFilter rawRequestFilter() {
return RawRequestFilter.none();
} |
Yeah, that's first thing I tried but it shows nothing in log form body. |
I only read multipart, nothing about form. Ok, I guess you're using the
|
Ok thank you, understood :) |
I need to log my request body, but it keeps printing . Body form is "form-data".
The text was updated successfully, but these errors were encountered: