Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/doc/conf/log4j.properties @ 540:80630520e25a
merged gnv-artifacts/0.4
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:13:49 +0200 |
parents | b198ca47f363 |
children |
comparison
equal
deleted
inserted
replaced
415:9f4a0b990d27 | 540:80630520e25a |
---|---|
1 ############################################################################### | |
2 # Developmentconfiguration for the Loggingengine. | |
3 # The Configuration will only log the Information to the Console. | |
4 # For Test- and Productionenviroment it is necessary to create a | |
5 # separate Configuration which will be log the Informations e.g. into | |
6 # a File (RolingFileAppender). | |
7 ############################################################################### | |
8 | |
9 # Set root logger level to DEBUG and its only appender to A1. | |
10 log4j.rootLogger=DEBUG, A1 | |
11 | |
12 # A1 is set to be a ConsoleAppender. | |
13 log4j.appender.A1=org.apache.log4j.ConsoleAppender | |
14 | |
15 # A1 uses PatternLayout. | |
16 log4j.appender.A1.layout=org.apache.log4j.PatternLayout | |
17 log4j.appender.A1.layout.ConversionPattern=%d [%t] %-5p %c - %m%n |