blob: 41c2fad9f6c4acfe868b7a67fc2fed899bd24171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
|