jdk/src/share/lib/logging.properties
author ksrini
Wed, 05 Sep 2012 11:38:40 -0700
changeset 13675 c2999ee84468
parent 9014 117374ccf1b7
permissions -rw-r--r--
7194005: (launcher) needs to be enhanced for 64-bit jar file handling Reviewed-by: darcy, sherman
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
############################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
#  	Default Logging Configuration File
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
# You can use a different file by specifying a filename
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# with the java.util.logging.config.file system property.  
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# For example java -Djava.util.logging.config.file=myfile
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
############################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
############################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
#  	Global properties
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
############################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# "handlers" specifies a comma separated list of log Handler 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# classes.  These handlers will be installed during VM startup.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
# Note that these classes must be on the system classpath.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
# By default we only configure a ConsoleHandler, which will only
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# show messages at the INFO and above levels.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
handlers= java.util.logging.ConsoleHandler
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
# To also add the FileHandler, use the following line instead.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
#handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
# Default global logging level.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
# This specifies which kinds of events are logged across
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
# all loggers.  For any given facility this global level
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
# can be overriden by a facility specific level
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
# Note that the ConsoleHandler also has a separate level
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
# setting to limit messages printed to the console.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
.level= INFO
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
############################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
# Handler specific properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
# Describes specific configuration info for Handlers.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
############################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
# default file output is in user's home directory.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
java.util.logging.FileHandler.pattern = %h/java%u.log
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
java.util.logging.FileHandler.limit = 50000
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
java.util.logging.FileHandler.count = 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
# Limit the message that are printed on the console to INFO and above.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
java.util.logging.ConsoleHandler.level = INFO
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
9014
117374ccf1b7 6381464: SimpleFormatter should use one single line format
mchung
parents: 2
diff changeset
    46
# Example to customize the SimpleFormatter output format 
117374ccf1b7 6381464: SimpleFormatter should use one single line format
mchung
parents: 2
diff changeset
    47
# to print one-line log message like this:
117374ccf1b7 6381464: SimpleFormatter should use one single line format
mchung
parents: 2
diff changeset
    48
#     <level>: <log message> [<date/time>]
117374ccf1b7 6381464: SimpleFormatter should use one single line format
mchung
parents: 2
diff changeset
    49
#
117374ccf1b7 6381464: SimpleFormatter should use one single line format
mchung
parents: 2
diff changeset
    50
# java.util.logging.SimpleFormatter.format=%4$s: %5$s [%1$tc]%n
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
############################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
# Facility specific properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
# Provides extra control for each logger.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
############################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
# For example, set the com.xyz.foo logger to only log SEVERE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
# messages:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
com.xyz.foo.level = SEVERE