logging.properties revision d6ee3934a24d8ccc0e4bb478405d8e5f6a35825d
335N/A############################################################
1186N/A# Logging Configuration File
1186N/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
335N/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/A#handlers= java.util.logging.ConsoleHandler
0N/A
0N/A# To also add the FileHandler, use the following line instead.
1244N/Ahandlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
1384N/A
1186N/A# Default global logging level.
1384N/A# This specifies which kinds of events are logged across
1186N/A# all loggers. For any given facility this global level
1355N/A# can be overriden by a facility specific level
1355N/A# Note that the ConsoleHandler also has a separate level
1186N/A# setting to limit messages printed to the console.
1186N/A#
1186N/A# Available logging levels: OFF, SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST, ALL
1186N/A# OFF will give no output, SEVERE will give very little output, FINEST and ALL will give lots of output.
1325N/A#
1325N/A.level= ALL
1186N/A
1186N/A############################################################
1186N/A# Handler specific properties.
1186N/A# Describes specific configuration info for Handlers.
1186N/A############################################################
1127N/A
0N/A# default file output is in user's home directory.
1186N/A#java.util.logging.FileHandler.pattern = %hjava%u.log
1384N/Ajava.util.logging.FileHandler.pattern = opengrok%g.%u.log
1384N/Ajava.util.logging.FileHandler.limit = 52428800
1186N/Ajava.util.logging.FileHandler.count = 3
1355N/Ajava.util.logging.FileHandler.level = ALL
1325N/A#java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
1355N/Ajava.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter
1384N/A
1355N/A# Limit the message that are printed on the console to INFO and above.
1281N/Ajava.util.logging.ConsoleHandler.level = INFO
1108N/Ajava.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
1281N/A
1281N/A
1281N/A############################################################
1281N/A# Facility specific properties.
1281N/A# Provides extra control for each logger.
1281N/A############################################################
1281N/A
1354N/A# For example, set the com.xyz.foo logger to only log SEVERE
1354N/A# messages:
1281N/A#com.xyz.foo.level = SEVERE
1281N/A