logging.properties revision f572d33ed141953335fe796ca36d818146af68ef
609N/A# Properties file which configures the operation of the JDK
609N/A# logging facility.
609N/A
609N/A# The system will look for this config file, first using
609N/A# a System property specified at startup:
609N/A#
609N/A# >java -Djava.util.logging.config.file=myLoggingConfigFilePath
609N/A#
609N/A# If this property is not specified, then the config file is
609N/A# retrieved from its default location at:
609N/A#
609N/A# JDK_HOME/jre/lib/logging.properties
609N/A
609N/A############################################################
609N/A# Global properties
609N/A############################################################
609N/A# ------------------------------------------
609N/A# The set of handlers to be loaded upon startup.
609N/A# Comma-separated list of class names.
609N/A# (? LogManager docs say no comma here, but JDK example has comma.)
609N/A# StreamHandler: A simple handler for writing formatted records to an OutputStream.
609N/A# ConsoleHandler: A simple handler for writing formatted records to System.err
609N/A# FileHandler: A handler that writes formatted log records either to a single file, or to a set of rotating log files.
609N/A# SocketHandler: A handler that writes formatted log records to remote TCP ports.
609N/A# MemoryHandler: A handler that buffers log records in memory.
609N/Ahandlers=java.util.logging.ConsoleHandler
609N/A# handlers=java.util.logging.FileHandler, java.util.logging.ConsoleHandler
609N/A
609N/A# Default global logging level.
609N/A# This specifies which kinds of events are logged across
609N/A# all loggers. For any given facility this global level
609N/A# can be overriden by a facility specific level
609N/A# Note that the ConsoleHandler also has a separate level
609N/A# setting to limit messages printed to the console.
609N/A# Loggers and Handlers may override this level
609N/A.level=INFO
609N/A
609N/A# Loggers
# ------------------------------------------
# Loggers are usually attached to packages.
# Here, the level for each package is specified.
# The global level is used by default, so levels
# specified here simply act as an override.
# The levels in descending order are:
# SEVERE (highest value)
# WARNING
# INFO
# CONFIG
# FINE
# FINER
# FINEST (lowest value)
############################################################
# Facility specific properties.
# Provides extra control for each logger.
############################################################
org.forgerock.openidm.provisioner.level = FINER
org.forgerock.openidm.repo.level = FINER
org.forgerock.openidm.recon.level = FINER
############################################################
# Handler specific properties.
# Describes specific configuration info for Handlers.
############################################################
# -----------------------------------------
# Writes detailed XML-structured information.
java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
# --- ConsoleHandler ---
# Default: java.util.logging.ConsoleHandler.level = INFO
# Override of global logging level
java.util.logging.ConsoleHandler.level = ALL
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
# Limit the message that are printed on the console to INFO and above.
# --- FileHandler ---
# Override of global logging level
java.util.logging.FileHandler.level = ALL
# Naming style for the output file:
# (The output file is placed in the directory
# defined by the "user.home" System property.)
java.util.logging.FileHandler.pattern = %h/java%u.log
# Limiting size of output file in bytes:
java.util.logging.FileHandler.limit = 50000
# Number of output files to cycle through, by appending an
# integer to the base file name:
java.util.logging.FileHandler.count = 1
# Style of output (Simple or XML):
# Writes brief "human-readable" summaries of log records.
java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter