diff options
author | jhh <jorge.hernandez-herrero@att.com> | 2019-04-16 23:09:49 -0500 |
---|---|---|
committer | jhh <jorge.hernandez-herrero@att.com> | 2019-04-16 23:10:46 -0500 |
commit | a2e7d569974b018235e821d7bc0bb7a43d75aa2c (patch) | |
tree | e9d669efdc6af9796e0865d95b1b263a1f9edfb1 /feature-lifecycle/src/test/resources | |
parent | fde980c4377e237eec08be75bdb7d6ae8fa33b78 (diff) |
Add response section to PAP status message
Change-Id: I26bf9f515c8639c030e8beb9e8b37a6a632da686
Issue-ID: POLICY-1655
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Diffstat (limited to 'feature-lifecycle/src/test/resources')
-rw-r--r-- | feature-lifecycle/src/test/resources/logback-test.xml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/feature-lifecycle/src/test/resources/logback-test.xml b/feature-lifecycle/src/test/resources/logback-test.xml new file mode 100644 index 00000000..bde0b5e8 --- /dev/null +++ b/feature-lifecycle/src/test/resources/logback-test.xml @@ -0,0 +1,28 @@ +<!-- + ============LICENSE_START======================================================= + Copyright (C) 2019 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> + <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> + <encoder> + <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{50}:%M:%line - %msg%n</pattern> + </encoder> + </appender> + <root level="INFO"> + <appender-ref ref="STDOUT" /> + </root> +</configuration>
\ No newline at end of file |