-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1443 from CMSgov/feature/QPPSE-312-Add_Additional…
…_Logging QPPSE-312: Added spring boot http logging
- Loading branch information
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
rest-api/src/main/java/gov/cms/qpp/conversion/api/config/RequestLoggingFilterConfig.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,16 @@ | ||
package gov.cms.qpp.conversion.api.config; | ||
|
||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.web.filter.CommonsRequestLoggingFilter; | ||
|
||
@Configuration | ||
public class RequestLoggingFilterConfig { | ||
@Bean | ||
public CommonsRequestLoggingFilter requestLoggingFilter() { | ||
CommonsRequestLoggingFilter loggingFilter = new CommonsRequestLoggingFilter(); | ||
loggingFilter.setIncludeQueryString(true); | ||
loggingFilter.setIncludeHeaders(true); | ||
return loggingFilter; | ||
} | ||
} |
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