aboutsummaryrefslogtreecommitdiff
path: root/work/cfg/log4j.properties
diff options
context:
space:
mode:
authortknall <tknall@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c>2006-12-01 12:20:24 +0000
committertknall <tknall@7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c>2006-12-01 12:20:24 +0000
commit6025b6016517c6d898d8957d1d7e03ba71431912 (patch)
treeb15bd6fa5ffe9588a9bca3f2b8a7e358f83b6eba /work/cfg/log4j.properties
parentd2c77e820ab4aba8235d71275755021347b3ad10 (diff)
downloadpdf-as-3-6025b6016517c6d898d8957d1d7e03ba71431912.tar.gz
pdf-as-3-6025b6016517c6d898d8957d1d7e03ba71431912.tar.bz2
pdf-as-3-6025b6016517c6d898d8957d1d7e03ba71431912.zip
Initial import of release 2.2.REL-2.2@923
git-svn-id: https://joinup.ec.europa.eu/svn/pdf-as/trunk@4 7b5415b0-85f9-ee4d-85bd-d5d0c3b42d1c
Diffstat (limited to 'work/cfg/log4j.properties')
-rw-r--r--work/cfg/log4j.properties24
1 files changed, 24 insertions, 0 deletions
diff --git a/work/cfg/log4j.properties b/work/cfg/log4j.properties
new file mode 100644
index 0000000..83f4921
--- /dev/null
+++ b/work/cfg/log4j.properties
@@ -0,0 +1,24 @@
+# An example log4j configuration file that outputs to System.out. The
+# output information consists of relative time, log level, thread
+# name, logger name, nested diagnostic context and the message in that
+# order.
+
+# For the general syntax of property based configuration files see the
+# documenation of org.apache.log4j.PropertyConfigurator.
+
+log4j.rootLogger=WARN, CA, FA
+
+# CA is set to be a ConsoleAppender which outputs to System.out.
+log4j.appender.CA=org.apache.log4j.ConsoleAppender
+log4j.appender.CA.layout=org.apache.log4j.PatternLayout
+log4j.appender.CA.layout.ConversionPattern=%d{ISO8601} %-4r %-5p [%t] %37c %3x - %m%n
+
+# FA is set to be a FileAppender which outputs to the corresponding log file
+log4j.appender.FA=org.apache.log4j.FileAppender
+log4j.appender.FA.File=logs\\pdf-as.log
+log4j.appender.FA.Append=true
+log4j.appender.FA.layout=org.apache.log4j.PatternLayout
+log4j.appender.FA.layout.ConversionPattern=%d{ISO8601} %-4r %-5p [%t] %c: %m%n
+
+
+log4j.logger.at.knowcenter.wag.egov.egiz=DEBUG \ No newline at end of file