diff options
Diffstat (limited to 'pdf-as-lib/src/configuration/cfg/logback.xml')
-rw-r--r-- | pdf-as-lib/src/configuration/cfg/logback.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pdf-as-lib/src/configuration/cfg/logback.xml b/pdf-as-lib/src/configuration/cfg/logback.xml new file mode 100644 index 00000000..3665f8f0 --- /dev/null +++ b/pdf-as-lib/src/configuration/cfg/logback.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<configuration> + + <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> + <layout class="ch.qos.logback.classic.PatternLayout"> + <Pattern>%date{ISO8601} [%thread] %-5level %class - %msg%n</Pattern> + </layout> + </appender> + + <logger name="at.gv.egiz" level="INFO"/> + <logger name="at.knowcenter" level="INFO"/> + + <root level="INFO"> + <appender-ref ref="STDOUT" /> + </root> +</configuration>
\ No newline at end of file |