mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
f480333d31
Branch in question is 'env' branch from git://git.springsource.org/sandbox/cbeams.git; merged into
git-svn repository with:
git merge -s recursive -Xtheirs --no-commit env
No merge conflicts, but did need to
git rm spring-build
prior to committing.
With this change, Spring 3.1.0 development is now happening on SVN
trunk. Further commits to the 3.0.x line will happen in an as-yet
uncreated SVN branch. 3.1.0 snapshots will be available
per the usual nightly CI build from trunk.
33 lines
827 B
XML
33 lines
827 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
|
|
|
|
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
|
|
|
|
<!-- Appenders -->
|
|
<appender name="console" class="org.apache.log4j.ConsoleAppender">
|
|
<param name="Target" value="System.out" />
|
|
<layout class="org.apache.log4j.PatternLayout">
|
|
<param name="ConversionPattern" value="%-5p: %c - %m%n" />
|
|
</layout>
|
|
</appender>
|
|
|
|
<logger name="org.springframework.beans">
|
|
<level value="warn" />
|
|
</logger>
|
|
|
|
<logger name="org.springframework.beans.factory.xml.XmlBeanFactory">
|
|
<level value="error" />
|
|
</logger>
|
|
|
|
<logger name="org.springframework.binding">
|
|
<level value="debug" />
|
|
</logger>
|
|
|
|
<!-- Root Logger -->
|
|
<root>
|
|
<priority value="warn" />
|
|
<appender-ref ref="console" />
|
|
</root>
|
|
|
|
</log4j:configuration>
|