1 ############################################################
\r
2 # Default Logging Configuration File
\r
4 # You can use a different file by specifying a filename
\r
5 # with the java.util.logging.config.file system property.
\r
6 # For example java -Djava.util.logging.config.file=myfile
\r
7 ############################################################
\r
9 ############################################################
\r
11 ############################################################
\r
13 # "handlers" specifies a comma separated list of log Handler
\r
14 # classes. These handlers will be installed during VM startup.
\r
15 # Note that these classes must be on the system classpath.
\r
16 # By default we only configure a ConsoleHandler, which will only
\r
17 # show messages at the INFO and above levels.
\r
18 handlers= java.util.logging.ConsoleHandler
\r
20 # To also add the FileHandler, use the following line instead.
\r
21 #handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
\r
23 # Default global logging level.
\r
24 # This specifies which kinds of events are logged across
\r
25 # all loggers. For any given facility this global level
\r
26 # can be overriden by a facility specific level
\r
27 # Note that the ConsoleHandler also has a separate level
\r
28 # setting to limit messages printed to the console.
\r
31 ############################################################
\r
32 # Handler specific properties.
\r
33 # Describes specific configuration info for Handlers.
\r
34 ############################################################
\r
36 # default file output is in user's home directory.
\r
37 java.util.logging.FileHandler.pattern = %h/java%u.log
\r
38 java.util.logging.FileHandler.limit = 50000
\r
39 java.util.logging.FileHandler.count = 1
\r
40 java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
\r
42 # Limit the message that are printed on the console to INFO and above.
\r
43 java.util.logging.ConsoleHandler.level = OFF
\r
44 java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
\r
47 ############################################################
\r
48 # Facility specific properties.
\r
49 # Provides extra control for each logger.
\r
50 ############################################################
\r
52 # For example, set the com.xyz.foo logger to only log SEVERE
\r
54 # com.xyz.foo.level = SEVERE
\r