jdk/src/share/lib/logging.properties
author never
Wed, 03 Feb 2010 15:56:37 -0800
changeset 4757 1fe15ef4fc8a
parent 2 90ce3da70b43
child 9014 117374ccf1b7
permissions -rw-r--r--
6921969: optimize 64 long multiply for case with high bits zero Reviewed-by: never, twisti, kvn, rasbold Contributed-by: Hiroshi Yamauchi <yamauchi@google.com>
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
############################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
# Facility specific properties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
# Provides extra control for each logger.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
############################################################
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
# For example, set the com.xyz.foo logger to only log SEVERE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
# messages:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
com.xyz.foo.level = SEVERE