# Default configuration for `java.util.logging` (JUL) # # This file is symbolically linked from all `/opt/jdk.*/jre/lib` as a replacement for the default # configuration shipped with each release of Java. # # For the content form, see the API documentation of `java.util.Properties`. # # PUBLISHED at `http://reluk.ca/sys/computer/server/opt/_/` — for no particular reason. # per java.util.logging.LogManager # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # handlers = java.util.logging.ConsoleHandler, java.util.logging.FileHandler handlers = java.util.logging.FileHandler .level = INFO # # Default logging level for all code. # Per java.util.logging.Level, one of: # OFF SEVERE WARNING INFO CONFIG FINE FINER FINEST ALL org.chicklet.htapi.level = FINER # votorola.level = INFO votorola.level = CONFIG # # Logging levels for project code. votorola.a.diff.feed.level = FINER # votorola.s.line.VOTer.level = WARNING # # Eliminate log churn in order to gain speed when running a large simulation # through the voter shell. # org.apache.wicket.markup.MarkupResourceData.level = WARNING # # Hide the INFO message, "using a non-standard component name" which appears when # using a namespace prefix other than "wicket:" in the Wicket XHTML templates. # per java.util.logging.ConsoleHandler # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - java.util.logging.ConsoleHandler.level = ALL ### clobbers other .level settings? java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter # per java.util.logging.FileHandler # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - java.util.logging.FileHandler.append = true # # default is false java.util.logging.FileHandler.count = 5 # # (files per cycle, default 1) It rotates not just when FileHandler.limit is # reached, but on every separate command. Rotation can cause tailer to miss # recent log entries. To disable it, set this to 1, and FileHandler.limit to 0. java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter java.util.logging.FileHandler.level = ALL java.util.logging.FileHandler.limit = 500000 # # (bytes, default is no limit, see also FileHandler.count) java.util.logging.FileHandler.pattern = %h/.java/deployment/log/%g_%u.log # # log file names, see java.util.logging.FileHandler for format