# Comma separated list of log Handler classes # These handlers will be installed during VM # startup. handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler # Default global logging level. .level= INFO # Handler specific properties. # Describes specific configuration info for # Handlers. java.util.logging.FileHandler.level = ALL # # location is the global temp directory (linux: /tmp/jake2_0.log) # %t means system temp dir # %g means log file number # java.util.logging.FileHandler.pattern = %t/jake2_%g.log # ca. 100KByte java.util.logging.FileHandler.limit = 100000 # max 1 file java.util.logging.FileHandler.count = 1 java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter # java.util.logging.XMLFormatter # java.util.logging.FileHandler.append = true # Limit the message that are printed on the # console to INFO and above. java.util.logging.ConsoleHandler.level = ALL java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter # For example, set the default jake2 package log level jake2.level = INFO # other individual package or class configs # jake2.imageio.level = FINEST # jake2.qcommon.FS.level = FINEST