| | |
| | | # java.util.logging.FileHandler.count = 2 |
| | | # java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter |
| | | java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter |
| | | # java.util.logging.FileHandler.level = FINER |
| | | java.util.logging.FileHandler.level = FINEST |
| | | |
| | | # Limit the message that are printed on the console to INFO and above. |
| | | # java.util.logging.ConsoleHandler.level = INFO |
| | | # java.util.logging.ConsoleHandler.level = FINER |
| | | java.util.logging.ConsoleHandler.level = FINEST |
| | | # java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter |
| | | |
| | | # Example to customize the SimpleFormatter output format |
| | |
| | | # <level>: <log message> [<date/time>] |
| | | # |
| | | # java.util.logging.SimpleFormatter.format=%4$s: %5$s [%1$tc]%n |
| | | java.util.logging.SimpleFormatter.format=[%1$tc] %4$s: %5$s %n |
| | | java.util.logging.SimpleFormatter.format=[%1$tc] %4$s: %5$s (%2$s)%n |
| | | |
| | | ############################################################ |
| | | # Facility specific properties. |