[P25284-20] Initial commit with setup and first draft rest servcice
This commit is contained in:
64
hartmann-foto-documentation-app/src/test/resources/log4j.xml
Normal file
64
hartmann-foto-documentation-app/src/test/resources/log4j.xml
Normal file
@@ -0,0 +1,64 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
|
||||
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
|
||||
<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
|
||||
<param name="Target" value="System.out"/>
|
||||
<param name="Threshold" value="DEBUG"/>
|
||||
<layout class="org.apache.log4j.PatternLayout">
|
||||
<!-- The default pattern: Date Priority [Category] Message\n -->
|
||||
<param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c] %m%n"/>
|
||||
</layout>
|
||||
</appender>
|
||||
|
||||
|
||||
<!-- ================ -->
|
||||
<!-- Limit categories -->
|
||||
<!-- ================ -->
|
||||
<!-- Limit the org.apache category to INFO as its DEBUG is verbose -->
|
||||
<category name="org.apache">
|
||||
<priority value="INFO"/>
|
||||
</category>
|
||||
<category name="com.bm">
|
||||
<priority value="INFO"/>
|
||||
</category>
|
||||
<category name="com.bm.introspectors">
|
||||
<priority value="ERROR"/>
|
||||
</category>
|
||||
|
||||
<category name="org.hibernate.cfg.annotations">
|
||||
<priority value="WARN"/>
|
||||
</category>
|
||||
|
||||
<category name="org.hibernate.cfg">
|
||||
<priority value="WARN"/>
|
||||
</category>
|
||||
|
||||
<category name="org.hibernate.tool">
|
||||
<priority value="WARN"/>
|
||||
</category>
|
||||
|
||||
<category name="org.hibernate.validator">
|
||||
<priority value="WARN"/>
|
||||
</category>
|
||||
|
||||
<category name="org.hibernate">
|
||||
<priority value="ERROR"/>
|
||||
</category>
|
||||
|
||||
|
||||
<category name="org.dbunit">
|
||||
<priority value="DEBUG"/>
|
||||
</category>
|
||||
|
||||
<category name="de.juwimm">
|
||||
<priority value="DEBUG"/>
|
||||
</category>
|
||||
|
||||
<category name="STDOUT">
|
||||
<priority value="DEBUG"/>
|
||||
</category>
|
||||
|
||||
<root>
|
||||
<appender-ref ref="CONSOLE"/>
|
||||
</root>
|
||||
</log4j:configuration>
|
||||
Reference in New Issue
Block a user