summaryrefslogtreecommitdiffstats
path: root/src/jake2/logging.properties
diff options
context:
space:
mode:
Diffstat (limited to 'src/jake2/logging.properties')
-rw-r--r--src/jake2/logging.properties41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/jake2/logging.properties b/src/jake2/logging.properties
new file mode 100644
index 0000000..41c2fad
--- /dev/null
+++ b/src/jake2/logging.properties
@@ -0,0 +1,41 @@
+# Comma separated list of log Handler classes
+# These handlers will be installed during VM
+# startup.
+handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
+
+# Default global logging level.
+.level= INFO
+
+# Handler specific properties.
+# Describes specific configuration info for
+# Handlers.
+
+java.util.logging.FileHandler.level = ALL
+#
+# location is the global temp directory (linux: /tmp/jake2_0.log)
+# %t means system temp dir
+# %g means log file number
+#
+java.util.logging.FileHandler.pattern = %t/jake2_%g.log
+# ca. 100KByte
+java.util.logging.FileHandler.limit = 100000
+# max 1 file
+java.util.logging.FileHandler.count = 1
+java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter
+# java.util.logging.XMLFormatter
+# java.util.logging.FileHandler.append = true
+
+
+# Limit the message that are printed on the
+# console to INFO and above.
+java.util.logging.ConsoleHandler.level = ALL
+java.util.logging.ConsoleHandler.formatter =
+ java.util.logging.SimpleFormatter
+
+
+# For example, set the default jake2 package log level
+jake2.level = INFO
+
+# other individual package or class configs
+# jake2.imageio.level = FINEST
+# jake2.qcommon.FS.level = FINEST \ No newline at end of file