diff options
author | 2017-02-14 15:10:16 +0000 | |
---|---|---|
committer | 2017-02-14 15:10:18 +0000 | |
commit | 42aa7bf4db502ab29b7573f4ee7ea14fbcdfc754 (patch) | |
tree | 76ce583397de136e1a59e82d5ef54965b091fdd3 /src/main/resources/logback.xml | |
parent | 2422dcaf91799e0fc6cf08a370021bee2d803ba3 (diff) |
Init dcae.dcae-inventory
Change-Id: I858617f32ab809c544ebf08310991b502917e6b3
Signed-off-by: lj1412 <lji@research.att.com>
Diffstat (limited to 'src/main/resources/logback.xml')
-rw-r--r-- | src/main/resources/logback.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/main/resources/logback.xml b/src/main/resources/logback.xml new file mode 100644 index 0000000..9e3f5bc --- /dev/null +++ b/src/main/resources/logback.xml @@ -0,0 +1,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> |