diff options
author | a.sreekumar <ajith.sreekumar@bell.ca> | 2021-07-28 17:21:35 +0100 |
---|---|---|
committer | a.sreekumar <ajith.sreekumar@bell.ca> | 2021-07-29 10:18:20 +0100 |
commit | 1036206455218a4722079b749e628ca96825418d (patch) | |
tree | 1c8b9fbf00a11f6739800f6a32bb9a007b9215cd /testsuites/integration/integration-uservice-test/src/test/resources/logback-test.xml | |
parent | 7803acd9f4abdf51dc686b68d4706f26af05ea40 (diff) |
Improve APEX logging for irrelevant events
When multiple policies are expecting event on the same topic/endpoint,
a lot of event parsing failure log messages are generated
unnecessarily. With this change, only a 1 line message will
be printed if an event cannot be parsed, and the detailed messages
will be available at debug level.
Change-Id: If1e7460ef5ed86fd470396f1e2ed8cc3c8af70c4
Issue-ID: POLICY-3499
Signed-off-by: a.sreekumar <ajith.sreekumar@bell.ca>
Diffstat (limited to 'testsuites/integration/integration-uservice-test/src/test/resources/logback-test.xml')
-rw-r--r-- | testsuites/integration/integration-uservice-test/src/test/resources/logback-test.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/logback-test.xml b/testsuites/integration/integration-uservice-test/src/test/resources/logback-test.xml index 341a9fdaa..1fa56526f 100644 --- a/testsuites/integration/integration-uservice-test/src/test/resources/logback-test.xml +++ b/testsuites/integration/integration-uservice-test/src/test/resources/logback-test.xml @@ -3,6 +3,7 @@ ============LICENSE_START======================================================= Copyright (C) 2016-2018 Ericsson. All rights reserved. Modifications Copyright (C) 2020 Nordix Foundation. + Modifications Copyright (C) 2021 Bell Canada. All rights reserved. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -36,7 +37,7 @@ </root> - <logger name="org.onap.policy.apex" level="INFO" additivity="false"> + <logger name="org.onap.policy.apex" level="DEBUG" additivity="false"> <appender-ref ref="STDOUT" /> </logger> |