1
0
mirror of synced 2026-08-05 09:47:05 +00:00

Removing log4j.properties files and adding logback config ones.

This commit is contained in:
Luke Taylor
2010-08-04 21:16:05 +01:00
parent 74b66591e9
commit c4ee46824c
10 changed files with 42 additions and 76 deletions
-10
View File
@@ -1,10 +0,0 @@
# Logging
#
log4j.rootLogger=INFO, stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%p %c{1} - %m%n
log4j.logger.org.springframework.security=DEBUG
+14
View File
@@ -0,0 +1,14 @@
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>
<logger name="org.apache.directory" level="WARN"/>
<root level="INFO">
<appender-ref ref="STDOUT" />
</root>
</configuration>