< prev index next >

src/java.logging/share/conf/logging.properties

Print this page




  43 java.util.logging.FileHandler.maxLocks = 100
  44 java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
  45 
  46 # Limit the message that are printed on the console to INFO and above.
  47 java.util.logging.ConsoleHandler.level = INFO
  48 java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
  49 
  50 # Example to customize the SimpleFormatter output format 
  51 # to print one-line log message like this:
  52 #     <level>: <log message> [<date/time>]
  53 #
  54 # java.util.logging.SimpleFormatter.format=%4$s: %5$s [%1$tc]%n
  55 
  56 ############################################################
  57 # Facility specific properties.
  58 # Provides extra control for each logger.
  59 ############################################################
  60 
  61 # For example, set the com.xyz.foo logger to only log SEVERE
  62 # messages:
  63 com.xyz.foo.level = SEVERE


  43 java.util.logging.FileHandler.maxLocks = 100
  44 java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
  45 
  46 # Limit the message that are printed on the console to INFO and above.
  47 java.util.logging.ConsoleHandler.level = INFO
  48 java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
  49 
  50 # Example to customize the SimpleFormatter output format 
  51 # to print one-line log message like this:
  52 #     <level>: <log message> [<date/time>]
  53 #
  54 # java.util.logging.SimpleFormatter.format=%4$s: %5$s [%1$tc]%n
  55 
  56 ############################################################
  57 # Facility specific properties.
  58 # Provides extra control for each logger.
  59 ############################################################
  60 
  61 # For example, set the com.xyz.foo logger to only log SEVERE
  62 # messages:
  63 # com.xyz.foo.level = SEVERE
< prev index next >