forked from box/mojito
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e54ee55
commit 9489fde
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
webapp/src/main/java/com/box/l10n/mojito/security/RequestLoggingConfig.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,29 @@ | ||
package com.box.l10n.mojito.security; | ||
|
||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.web.filter.CommonsRequestLoggingFilter; | ||
|
||
@Configuration | ||
public class RequestLoggingConfig { | ||
|
||
@Value("${l10n.logging.includesQueryString:false}") | ||
public boolean includesQueryString; | ||
|
||
@Value("${l10n.logging.includesHeader:false}") | ||
public boolean includesHeader; | ||
|
||
@Bean | ||
@ConditionalOnProperty(value = "l10n.logging.requests.enabled", havingValue = "true") | ||
public CommonsRequestLoggingFilter logFilter() { | ||
CommonsRequestLoggingFilter filter = new CommonsRequestLoggingFilter(); | ||
filter.setIncludeQueryString(includesQueryString); | ||
filter.setIncludePayload(true); | ||
filter.setMaxPayloadLength(10000); | ||
filter.setIncludeHeaders(includesHeader); | ||
filter.setAfterMessagePrefix("REQUEST DATA: "); | ||
return filter; | ||
} | ||
} |