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