author | erikj |
Tue, 12 Sep 2017 19:03:39 +0200 | |
changeset 47216 | 71c04702a3d5 |
parent 39307 | jdk/src/java.logging/share/conf/logging.properties@35eab41d2df1 |
child 53009 | c45615dc6bfc |
permissions | -rw-r--r-- |
2 | 1 |
############################################################ |
2 |
# Default Logging Configuration File |
|
3 |
# |
|
4 |
# You can use a different file by specifying a filename |
|
5 |
# with the java.util.logging.config.file system property. |
|
6 |
# For example java -Djava.util.logging.config.file=myfile |
|
7 |
############################################################ |
|
8 |
||
9 |
############################################################ |
|
10 |
# Global properties |
|
11 |
############################################################ |
|
12 |
||
13 |
# "handlers" specifies a comma separated list of log Handler |
|
14 |
# classes. These handlers will be installed during VM startup. |
|
15 |
# Note that these classes must be on the system classpath. |
|
16 |
# By default we only configure a ConsoleHandler, which will only |
|
17 |
# show messages at the INFO and above levels. |
|
18 |
handlers= java.util.logging.ConsoleHandler |
|
19 |
||
20 |
# To also add the FileHandler, use the following line instead. |
|
21 |
#handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler |
|
22 |
||
23 |
# Default global logging level. |
|
24 |
# This specifies which kinds of events are logged across |
|
25 |
# all loggers. For any given facility this global level |
|
26 |
# can be overriden by a facility specific level |
|
27 |
# Note that the ConsoleHandler also has a separate level |
|
28 |
# setting to limit messages printed to the console. |
|
29 |
.level= INFO |
|
30 |
||
31 |
############################################################ |
|
32 |
# Handler specific properties. |
|
33 |
# Describes specific configuration info for Handlers. |
|
34 |
############################################################ |
|
35 |
||
36 |
# default file output is in user's home directory. |
|
37 |
java.util.logging.FileHandler.pattern = %h/java%u.log |
|
38 |
java.util.logging.FileHandler.limit = 50000 |
|
39 |
java.util.logging.FileHandler.count = 1 |
|
39307
35eab41d2df1
8153955: increase java.util.logging.FileHandler MAX_LOCKS limit
rpatil
parents:
25859
diff
changeset
|
40 |
# Default number of locks FileHandler can obtain synchronously. |
35eab41d2df1
8153955: increase java.util.logging.FileHandler MAX_LOCKS limit
rpatil
parents:
25859
diff
changeset
|
41 |
# This specifies maximum number of attempts to obtain lock file by FileHandler |
35eab41d2df1
8153955: increase java.util.logging.FileHandler MAX_LOCKS limit
rpatil
parents:
25859
diff
changeset
|
42 |
# implemented by incrementing the unique field %u as per FileHandler API documentation. |
35eab41d2df1
8153955: increase java.util.logging.FileHandler MAX_LOCKS limit
rpatil
parents:
25859
diff
changeset
|
43 |
java.util.logging.FileHandler.maxLocks = 100 |
2 | 44 |
java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter |
45 |
||
46 |
# Limit the message that are printed on the console to INFO and above. |
|
47 |
java.util.logging.ConsoleHandler.level = INFO |
|
48 |
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter |
|
49 |
||
9014
117374ccf1b7
6381464: SimpleFormatter should use one single line format
mchung
parents:
2
diff
changeset
|
50 |
# Example to customize the SimpleFormatter output format |
117374ccf1b7
6381464: SimpleFormatter should use one single line format
mchung
parents:
2
diff
changeset
|
51 |
# to print one-line log message like this: |
117374ccf1b7
6381464: SimpleFormatter should use one single line format
mchung
parents:
2
diff
changeset
|
52 |
# <level>: <log message> [<date/time>] |
117374ccf1b7
6381464: SimpleFormatter should use one single line format
mchung
parents:
2
diff
changeset
|
53 |
# |
117374ccf1b7
6381464: SimpleFormatter should use one single line format
mchung
parents:
2
diff
changeset
|
54 |
# java.util.logging.SimpleFormatter.format=%4$s: %5$s [%1$tc]%n |
2 | 55 |
|
56 |
############################################################ |
|
57 |
# Facility specific properties. |
|
58 |
# Provides extra control for each logger. |
|
59 |
############################################################ |
|
60 |
||
61 |
# For example, set the com.xyz.foo logger to only log SEVERE |
|
62 |
# messages: |
|
63 |
com.xyz.foo.level = SEVERE |