aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/resources/logback.xml
blob: 9e3f5bc727f400f99bc4d487d6510ccf572e48a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="UTF-8"?>
<!--
  ============LICENSE_START===========
  dcae-inventory
  ==================================
  Copyright (C) 2016 AT&T
  ==================================
  This code is licensed under the Apache License, Version 2.0; you may 
  not use this code for any purpose except in compliance with the Apache
  License. You may obtain a copy of the License at 
         http://www.att.com/legal/openecomp.html
  ============LICENSE_END===========
  -->

<configuration>
    <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
        <layout class="ch.qos.logback.classic.PatternLayout">
            <Pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</Pattern>
        </layout>
    </appender>

    <logger name="com" level="INFO"/>

    <root level="debug">
        <appender-ref ref="STDOUT" />
    </root>
</configuration>