-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: enable request logging to simplify debugging
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
src/main/java/de/caritas/cob/videoservice/config/LoggingConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package de.caritas.cob.videoservice.config; | ||
|
||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.web.filter.CommonsRequestLoggingFilter; | ||
|
||
@Configuration | ||
public class LoggingConfig { | ||
|
||
@Bean | ||
public CommonsRequestLoggingFilter logFilter() { | ||
CommonsRequestLoggingFilter filter = new CommonsRequestLoggingFilter(); | ||
filter.setIncludeQueryString(true); | ||
filter.setIncludePayload(true); | ||
filter.setMaxPayloadLength(10000); | ||
filter.setIncludeHeaders(false); | ||
filter.setAfterMessagePrefix("REQUEST DATA: "); | ||
return filter; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters