test/jdk/java/util/logging/LogManager/Configuration/rootLoggerHandlers/logging.properties
author dfuchs
Fri, 08 Dec 2017 11:50:39 +0000
changeset 48221 0ba2a82e4755
child 48674 e2a7856edfba
permissions -rw-r--r--
8191033: Regression in logging.properties: specifying .handlers= for root logger (instead of handlers=) no longer works Summary: The behavior observed for Java 8 is restored Reviewed-by: martin, mchung

############################################################
#  	Global properties
############################################################

# "handlers" specifies a comma separated list of log Handler
# classes.  These handlers will be installed during VM startup.
#handlers= java.util.logging.ConsoleHandler
handlers= custom.Handler
.handlers= custom.DotHandler

# Default global logging level.
.level= INFO

# Other configuration
custom.Handler.level=ALL
custom.DotHandler.level=ALL
java.util.logging.SimpleFormatter.format=%4$s [%1$tc]: %2$s: %5$s%n