diff options
author | Jim Hahn <jrh3@att.com> | 2020-03-17 09:52:03 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2020-03-17 10:37:31 -0400 |
commit | 01cbeec256bf5ec9e3ec2e7f599aef7eb4814ae3 (patch) | |
tree | fbdeaaa4bec64e1829696187ebaa64d902e5eed6 /controlloop/common/rules-test/src/test/resources/logback-test.xml | |
parent | f71f1109d08c3ca1da43c7122bce0fedb4d0027e (diff) |
More sonar fixes in drools-apps
Issue-ID: POLICY-2426
Signed-off-by: Jim Hahn <jrh3@att.com>
Change-Id: Idfdcb229d05ee7f0220f44f8099284caaed754d4
Diffstat (limited to 'controlloop/common/rules-test/src/test/resources/logback-test.xml')
-rw-r--r-- | controlloop/common/rules-test/src/test/resources/logback-test.xml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/controlloop/common/rules-test/src/test/resources/logback-test.xml b/controlloop/common/rules-test/src/test/resources/logback-test.xml new file mode 100644 index 000000000..6b09022be --- /dev/null +++ b/controlloop/common/rules-test/src/test/resources/logback-test.xml @@ -0,0 +1,44 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ============LICENSE_START======================================================= + ONAP + ================================================================================ + Copyright (C) 2020 AT&T Intellectual Property. 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. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + ============LICENSE_END========================================================= +--> + +<configuration> + + <contextName>RulesTest</contextName> + <statusListener class="ch.qos.logback.core.status.OnConsoleStatusListener" /> + + <!-- USE FOR STD OUT ONLY --> + <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> + <encoder> + <Pattern>%d %level %msg%n</Pattern> + </encoder> + </appender> + + <root level="warn"> + <appender-ref ref="STDOUT" /> + </root> + + <!-- this is required for RulesTest --> + <logger + name="org.onap.policy.controlloop.common.rules.test.Rules" + level="info" additivity="false"> + <appender-ref ref="STDOUT" /> + </logger> +</configuration> |