puthuparambil.aditya | 7625e52 | 2021-01-22 22:01:50 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2020 Bell Canada. All rights reserved. |
| 4 | ================================================================================ |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | Unless required by applicable law or agreed to in writing, software |
| 10 | distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | See the License for the specific language governing permissions and |
| 13 | limitations under the License. |
| 14 | SPDX-License-Identifier: Apache-2.0 |
| 15 | ============LICENSE_END========================================================= |
| 16 | --> |
| 17 | |
| 18 | <configuration scan="true" scanPeriod="30 seconds" debug="false"> |
| 19 | |
| 20 | <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> |
| 21 | <encoder> |
| 22 | <pattern>%d - %highlight(%-5level) [%-20.20thread] %cyan(%logger{36}) - %msg%n</pattern> |
| 23 | </encoder> |
| 24 | </appender> |
| 25 | <appender name="AsyncSysOut" class="ch.qos.logback.classic.AsyncAppender"> |
| 26 | <appender-ref ref="STDOUT" /> |
| 27 | </appender> |
| 28 | |
| 29 | <root level="INFO"> |
| 30 | <appender-ref ref="AsyncSysOut" /> |
| 31 | </root> |
| 32 | |
| 33 | </configuration> |
| 34 | |