waqas.ikram | 5abd306 | 2018-05-24 17:00:47 +0100 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Copyright (C) 2016-2018 Ericsson. All rights reserved. |
| 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
| 22 | <configuration> |
| 23 | |
| 24 | <contextName>Apex</contextName> |
| 25 | <statusListener class="ch.qos.logback.core.status.OnConsoleStatusListener" /> |
| 26 | <property name="LOG_DIR" value="${java.io.tmpdir}/apex_logging/" /> |
| 27 | |
| 28 | <!-- USE FOR STD OUT ONLY --> |
| 29 | <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> |
| 30 | <encoder> |
| 31 | <Pattern>%d %contextName [%t] %level %logger{36} - %msg%n</Pattern> |
| 32 | </encoder> |
| 33 | </appender> |
| 34 | |
| 35 | <root level="INFO"> |
| 36 | <appender-ref ref="STDOUT" /> |
| 37 | </root> |
| 38 | |
| 39 | <logger name="org.infinispan" level="INFO" additivity="false"> |
| 40 | <appender-ref ref="STDOUT" /> |
| 41 | </logger> |
| 42 | |
| 43 | <logger name="com.ericsson.apex.core.contextmodel" level="TRACE" additivity="false"> |
| 44 | <appender-ref ref="STDOUT" /> |
| 45 | </logger> |
| 46 | |
| 47 | <logger name="org.apache.zookeeper.ClientCnxn" level="OFF" additivity="false"> |
| 48 | <appender-ref ref="STDOUT" /> |
| 49 | </logger> |
| 50 | |
| 51 | <logger name="com.ericsson.apex.core" level="TRACE" additivity="false"> |
| 52 | <appender-ref ref="STDOUT" /> |
| 53 | </logger> |
| 54 | |
| 55 | <appender name="FILE" class="ch.qos.logback.core.FileAppender"> |
| 56 | <file>${LOG_DIR}/apex.log</file> |
| 57 | <encoder> |
| 58 | <pattern>%d %-5relative [procId=${processId}] [%thread] %-5level |
| 59 | %logger{26} - %msg %n %ex{full}</pattern> |
| 60 | </encoder> |
| 61 | </appender> |
| 62 | |
| 63 | <appender name="CTXT_FILE" class="ch.qos.logback.core.FileAppender"> |
| 64 | <file>${LOG_DIR}/apex_ctxt.log</file> |
| 65 | <encoder> |
| 66 | <pattern>%d %-5relative [procId=${processId}] [%thread] %-5level |
| 67 | %logger{26} - %msg %n %ex{full}</pattern> |
| 68 | </encoder> |
| 69 | </appender> |
| 70 | |
| 71 | <logger name="com.ericsson.apex.core.context.impl.monitoring" level="TRACE" additivity="false"> |
| 72 | <appender-ref ref="CTXT_FILE" /> |
| 73 | </logger> |
| 74 | |
| 75 | <logger name="com.ericsson.apex.core.context" level="INFO" additivity="false"> |
| 76 | <appender-ref ref="STDOUT" /> |
| 77 | </logger> |
| 78 | </configuration> |