[BAEL-16045] - Modified .gitignore, otherwise it is ignoring CustomeRequestLoggingFilter.java file

This commit is contained in:
amit2103
2019-07-29 00:57:31 +05:30
parent 1621b33ef1
commit 4492c680a7
2 changed files with 13 additions and 1 deletions

2
.gitignore vendored
View File

@@ -29,7 +29,7 @@ out/
.DS_Store
# Maven
log/
log/*
target/
# Gradle

View File

@@ -0,0 +1,12 @@
package com.baeldung.web.log.config;
import org.springframework.web.filter.CommonsRequestLoggingFilter;
public class CustomeRequestLoggingFilter extends CommonsRequestLoggingFilter {
public CustomeRequestLoggingFilter() {
super.setIncludeQueryString(true);
super.setIncludePayload(true);
super.setMaxPayloadLength(10000);
}
}