summaryrefslogtreecommitdiff
path: root/eaaf_core/src/test/resources/log4j.xml
diff options
context:
space:
mode:
Diffstat (limited to 'eaaf_core/src/test/resources/log4j.xml')
-rw-r--r--eaaf_core/src/test/resources/log4j.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/eaaf_core/src/test/resources/log4j.xml b/eaaf_core/src/test/resources/log4j.xml
new file mode 100644
index 00000000..6685c1e8
--- /dev/null
+++ b/eaaf_core/src/test/resources/log4j.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
+
+<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
+ <appender name="consoleAppender" class="org.apache.log4j.ConsoleAppender">
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d{dd MMM yyyy HH:mm:ss} %5p %c{1} - %m%n" />
+ </layout>
+ </appender>
+
+ <root>
+ <priority value="info" />
+ <appender-ref ref="consoleAppender" />
+ </root>
+
+</log4j:configuration>