blob: 99cdaf9a62fe4aa6b072f75adf8164e313a5fe4f [file] [log] [blame]
Magnusen, Drew (dm741q)18253e52017-09-07 08:55:17 -05001<!--
2 ============LICENSE_START=======================================================
3 feature-state-management
4 ================================================================================
Pamela Dragoshad833192018-09-13 20:37:15 -04005 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Magnusen, Drew (dm741q)18253e52017-09-07 08:55:17 -05006 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19 -->
20
21<!-- Controls the output of logs for JUnit tests -->
22
23<configuration>
24
Pamela Dragoshad833192018-09-13 20:37:15 -040025 <appender name="STDOUT"
26 class="ch.qos.logback.core.ConsoleAppender">
27 <encoder
28 class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
29 <Pattern>
30 %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36}.%M\(%line\) - %msg%n
31 </Pattern>
32 </encoder>
33 </appender>
34 <appender name="FILE"
35 class="ch.qos.logback.core.FileAppender">
36 <file>logs/debug.log</file>
37 <encoder>
38 <Pattern>
39 %d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{36}.%M\(%line\) - %msg%n
40 </Pattern>
41 </encoder>
42 </appender>
43
44 <root level="debug">
45 <appender-ref ref="STDOUT" />
46 <appender-ref ref="FILE" />
47 </root>
Magnusen, Drew (dm741q)18253e52017-09-07 08:55:17 -050048
49</configuration>
50