Created
August 7, 2012 08:44
-
-
Save anonymous/3283384 to your computer and use it in GitHub Desktop.
Log4j 2 XML config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration status="${sys:log.level}" strict="false" name="DSI" packages="com.terradue.dsione"> | |
| <appenders> | |
| <Console name="Console" target="SYSTEM_OUT"> | |
| <PatternLayout pattern="[%-5level] %msg%n" /> | |
| </Console> | |
| </appenders> | |
| <loggers> | |
| <root level="${sys:log.level}"> | |
| <appender-ref ref="Console" /> | |
| </root> | |
| </loggers> | |
| </configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment