src/share/lib/logging.properties

Print this page

        

*** 41,50 **** --- 41,55 ---- # Limit the message that are printed on the console to INFO and above. java.util.logging.ConsoleHandler.level = INFO java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter + # Example to customize the SimpleFormatter output format + # to print one-line log message like this: + # <level>: <log message> [<date/time>] + # + # java.util.logging.SimpleFormatter.format=%4$s: %5$s [%1$tc]%n ############################################################ # Facility specific properties. # Provides extra control for each logger. ############################################################