< prev index next >

test/jdk/java/util/logging/LogManager/Configuration/rootLoggerHandlers/logging.properties

Print this page


   1 ############################################################
   2 #       Global properties
   3 ############################################################
   4 
   5 # "handlers" specifies a comma separated list of log Handler
   6 # classes.  These handlers will be installed during VM startup.
   7 #handlers= java.util.logging.ConsoleHandler
   8 handlers= custom.Handler
   9 .handlers= custom.DotHandler

  10 
  11 # Default global logging level.
  12 .level= INFO
  13 
  14 # Other configuration
  15 custom.Handler.level=ALL
  16 custom.DotHandler.level=ALL

  17 java.util.logging.SimpleFormatter.format=%4$s [%1$tc]: %2$s: %5$s%n
  18 
   1 ############################################################
   2 #       Global properties
   3 ############################################################
   4 
   5 # "handlers" specifies a comma separated list of log Handler
   6 # classes.  These handlers will be installed during VM startup.
   7 #handlers= java.util.logging.ConsoleHandler
   8 handlers= custom.Handler
   9 .handlers= custom.DotHandler
  10 global.handlers= custom.GlobalHandler
  11 
  12 # Default global logging level.
  13 .level= INFO
  14 
  15 # Other configuration
  16 custom.Handler.level=ALL
  17 custom.DotHandler.level=ALL
  18 custom.GlobalHandler.level=ALL
  19 java.util.logging.SimpleFormatter.format=%4$s [%1$tc]: %2$s: %5$s%n
  20 
< prev index next >