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