summaryrefslogtreecommitdiffstats
path: root/ccsdk-app-common/src/main/java/org/onap/fusionapp/util/CustomLoggingFilter.java
diff options
context:
space:
mode:
authorTimoney, Dan (dt5972) <dtimoney@att.com>2019-03-15 12:25:28 -0400
committerTimoney, Dan (dt5972) <dtimoney@att.com>2019-03-15 12:25:32 -0400
commitb46d863e9e5db30291034e8740291c70875f1f5f (patch)
tree6766ccb15edba5807a429278bf57ed8d241d2ce8 /ccsdk-app-common/src/main/java/org/onap/fusionapp/util/CustomLoggingFilter.java
parent2e98a6c64dcdc0891f3729abb045115b790a2c54 (diff)
Resolve security issues
This change contains the following fixes: 1) Updated ccsdk/dashboard to use ONAP's oparent parent pom 2) Removed <version> tag from dependencies managed by oparent, where feasible (e.g. not spring, since oparent uses Spring 5 and dashboard is based on Spring 4) 3) Updated versions of third party libraries as needed to address vulnerabilities found in nexus IQ scan. 4) Added missing license headers in source files to resolve checkstyle error from oparent. 5) Fixed indentation (tab -> 4 spaces) to resolve oparent checkstyle warning. Change-Id: Ib92d5ef86dbdb78c270d0901cc0753cd5a78eb6e Issue-ID: CCSDK-1167 Signed-off-by: Timoney, Dan (dt5972) <dtimoney@att.com>
Diffstat (limited to 'ccsdk-app-common/src/main/java/org/onap/fusionapp/util/CustomLoggingFilter.java')
-rw-r--r--ccsdk-app-common/src/main/java/org/onap/fusionapp/util/CustomLoggingFilter.java43
1 files changed, 21 insertions, 22 deletions
diff --git a/ccsdk-app-common/src/main/java/org/onap/fusionapp/util/CustomLoggingFilter.java b/ccsdk-app-common/src/main/java/org/onap/fusionapp/util/CustomLoggingFilter.java
index 165a8b8..13c36e6 100644
--- a/ccsdk-app-common/src/main/java/org/onap/fusionapp/util/CustomLoggingFilter.java
+++ b/ccsdk-app-common/src/main/java/org/onap/fusionapp/util/CustomLoggingFilter.java
@@ -33,26 +33,25 @@ import ch.qos.logback.core.spi.FilterReply;
*/
public class CustomLoggingFilter extends Filter<ILoggingEvent> {
- /**
- * Custom Filter is added to strip out the continuous U-EB logging messages
- * But make sure we log the ERROR and WARNING Level messages.
- *
- * @param event
- * Logging event
- */
- @Override
- public FilterReply decide(ILoggingEvent event) {
- try {
- if ((event.getLevel() != Level.ERROR || event.getLevel() != Level.WARN)
- && ("UEBConsumerThread".equalsIgnoreCase(event.getThreadName()))
- && (event.getLoggerName().contains("com.att.nsa")
- || event.getLoggerName().contains("org.apache.http"))) {
- return FilterReply.DENY;
- } else {
- return FilterReply.NEUTRAL;
- }
- } catch (Exception e) {
- return FilterReply.NEUTRAL;
- }
- }
+ /**
+ * Custom Filter is added to strip out the continuous U-EB logging messages But
+ * make sure we log the ERROR and WARNING Level messages.
+ *
+ * @param event Logging event
+ */
+ @Override
+ public FilterReply decide(ILoggingEvent event) {
+ try {
+ if ((event.getLevel() != Level.ERROR || event.getLevel() != Level.WARN)
+ && ("UEBConsumerThread".equalsIgnoreCase(event.getThreadName()))
+ && (event.getLoggerName().contains("com.att.nsa")
+ || event.getLoggerName().contains("org.apache.http"))) {
+ return FilterReply.DENY;
+ } else {
+ return FilterReply.NEUTRAL;
+ }
+ } catch (Exception e) {
+ return FilterReply.NEUTRAL;
+ }
+ }
}