# format: java.util.Properties -*-shell-script-*- # 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 # votorola.level = INFO votorola.level = FINE # # Logging level for project code. # 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