logging.properties revision b645988bdc1cf4f2f82b8c00ed041ddddd822c24
5239N/A############################################################
5239N/A# Logging Configuration File
5239N/A#
5239N/A# You can use a different file by specifying a filename
5239N/A# with the java.util.logging.config.file system property.
5239N/A# For example java -Djava.util.logging.config.file=myfile
5239N/A############################################################
5239N/A
5239N/A############################################################
5239N/A# Global properties
5239N/A############################################################
5239N/A
5239N/A# "handlers" specifies a comma separated list of log Handler
5239N/A# classes. These handlers will be installed during VM startup.
5239N/A# Note that these classes must be on the system classpath.
5239N/A# By default we only configure a ConsoleHandler, which will only
5239N/A# show messages at the INFO and above levels.
5239N/A#handlers= java.util.logging.ConsoleHandler
5239N/A
5239N/A# To also add the FileHandler, use the following line instead.
5239N/Ahandlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
5239N/A
5239N/A# Default global logging level.
5239N/A# This specifies which kinds of events are logged across
5680N/A# all loggers. For any given facility this global level
5239N/A# can be overriden by a facility specific level
5239N/A# Note that the ConsoleHandler also has a separate level
5239N/A# setting to limit messages printed to the console.
5239N/A#
5239N/A# Available logging levels: OFF, SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST, ALL
5239N/A# OFF will give no output, SEVERE will give very little output, FINEST and ALL will give lots of output.
5239N/A#
5239N/A.level= ALL
5239N/A
5239N/A############################################################
5239N/A# Handler specific properties.
5239N/A# Describes specific configuration info for Handlers.
5239N/A############################################################
5680N/A
5239N/A# default file output is in user's home directory.
5239N/A#java.util.logging.FileHandler.pattern = %hjava%u.log
5239N/Ajava.util.logging.FileHandler.pattern = opengrok.%g.%u.log
5239N/Ajava.util.logging.FileHandler.limit = 52428800
5239N/Ajava.util.logging.FileHandler.count = 3
5239N/Ajava.util.logging.FileHandler.level = ALL
5239N/A#java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
5239N/Ajava.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter
5239N/A
5239N/A# Limit the message that are printed on the console to INFO and above.
5239N/Ajava.util.logging.ConsoleHandler.level = INFO
5239N/Ajava.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
5239N/A
5795N/A
5239N/A############################################################
5239N/A# Facility specific properties.
# Provides extra control for each logger.
############################################################
# For example, set the com.xyz.foo logger to only log SEVERE
# messages:
#com.xyz.foo.level = SEVERE