Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'distribution/src/main/resources/resources/log4j.properties')
-rw-r--r--distribution/src/main/resources/resources/log4j.properties9
1 files changed, 9 insertions, 0 deletions
diff --git a/distribution/src/main/resources/resources/log4j.properties b/distribution/src/main/resources/resources/log4j.properties
new file mode 100644
index 0000000000..8899c004be
--- /dev/null
+++ b/distribution/src/main/resources/resources/log4j.properties
@@ -0,0 +1,9 @@
+
+# This is not needed by Jetty - but it helps with many web apps.
+
+log4j.rootLogger=INFO, stdout
+
+log4j.appender.stdout=org.apache.log4j.ConsoleAppender
+log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
+log4j.appender.stdout.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n
+

Back to the top