22# Default Logging Configuration File
33#
44# You can use a different file by specifying a filename
5- # with the java.util.logging.config.file system property.
6- # For example java -Djava.util.logging.config.file=myfile
5+ # with the java.util.logging.config.file system property.
6+ # For example, java -Djava.util.logging.config.file=myfile
77# ###########################################################
88
99# ###########################################################
1010# Global properties
1111# ###########################################################
1212
13- # "handlers" specifies a comma separated list of log Handler
13+ # "handlers" specifies a comma- separated list of log Handler
1414# classes. These handlers will be installed during VM startup.
1515# Note that these classes must be on the system classpath.
1616# By default we only configure a ConsoleHandler, which will only
@@ -23,7 +23,7 @@ handlers= java.util.logging.ConsoleHandler
2323# Default global logging level.
2424# This specifies which kinds of events are logged across
2525# all loggers. For any given facility this global level
26- # can be overriden by a facility specific level
26+ # can be overridden by a facility- specific level
2727# Note that the ConsoleHandler also has a separate level
2828# setting to limit messages printed to the console.
2929.level = INFO
@@ -43,18 +43,18 @@ java.util.logging.FileHandler.count = 1
4343java.util.logging.FileHandler.maxLocks = 100
4444java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
4545
46- # Limit the message that are printed on the console to INFO and above.
46+ # Limit the messages that are printed on the console to INFO and above.
4747java.util.logging.ConsoleHandler.level = INFO
4848java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
4949
50- # Example to customize the SimpleFormatter output format
50+ # Example to customize the SimpleFormatter output format
5151# to print one-line log message like this:
5252# <level>: <log message> [<date/time>]
5353#
5454# java.util.logging.SimpleFormatter.format=%4$s: %5$s [%1$tc]%n
5555
5656# ###########################################################
57- # Facility specific properties.
57+ # Facility- specific properties.
5858# Provides extra control for each logger.
5959# ###########################################################
6060
0 commit comments