logging.properties revision 3888
0N/A############################################################
0N/A# Default Logging Configuration File
0N/A#
0N/A# You can use a different file by specifying a filename
0N/A# with the java.util.logging.config.file system property.
0N/A# For example java -Djava.util.logging.config.file=myfile
0N/A############################################################
0N/A
0N/A############################################################
0N/A# Global properties
0N/A############################################################
0N/A
0N/A# "handlers" specifies a comma separated list of log Handler
0N/A# classes. These handlers will be installed during VM startup.
0N/A# Note that these classes must be on the system classpath.
0N/A# By default we only configure a ConsoleHandler, which will only
0N/A# show messages at the INFO and above levels.
0N/Ahandlers= java.util.logging.ConsoleHandler
0N/A
0N/A# To also add the FileHandler, use the following line instead.
0N/A#handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
0N/A
0N/A# Default global logging level.
0N/A# This specifies which kinds of events are logged across
0N/A# all loggers. For any given facility this global level
0N/A# can be overriden by a facility specific level
0N/A# Note that the ConsoleHandler also has a separate level
0N/A# setting to limit messages printed to the console.
0N/A.level= INFO
0N/A
0N/A############################################################
0N/A# Handler specific properties.
0N/A# Describes specific configuration info for Handlers.
0N/A############################################################
0N/A
0N/A# default file output is in user's home directory.
0N/Ajava.util.logging.FileHandler.pattern = %h/java%u.log
0N/Ajava.util.logging.FileHandler.limit = 50000
0N/Ajava.util.logging.FileHandler.count = 1
0N/Ajava.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
0N/A
0N/A# Limit the message that are printed on the console to INFO and above.
0N/Ajava.util.logging.ConsoleHandler.level = INFO
0N/Ajava.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
0N/A
3888N/A# Example to customize the SimpleFormatter output format
3888N/A# to print one-line log message like this:
3888N/A# <level>: <log message> [<date/time>]
3888N/A#
3888N/A# java.util.logging.SimpleFormatter.format=%4$s: %5$s [%1$tc]%n
0N/A
0N/A############################################################
0N/A# Facility specific properties.
0N/A# Provides extra control for each logger.
0N/A############################################################
0N/A
0N/A# For example, set the com.xyz.foo logger to only log SEVERE
0N/A# messages:
0N/Acom.xyz.foo.level = SEVERE