############################################################ # Logging Configuration File # # To use this file specify its filename # with the java.util.logging.config.file system property. # # For example: # java -Djava.util.logging.config.file=logging.properties au.com.forward.ExampleLoggingApplication # ############################################################ ############################################################ # Global properties ############################################################ # "handlers" specifies a comma separated list of log Handler # classes. These handlers will be installed during VM startup. # Note that these classes must be on the system classpath. # Add a FileHandler handlers=java.util.logging.FileHandler # Default global logging level. # This specifies which kinds of events are logged across # all loggers. For any given facility this global level # can be overridden by a facility specific level .level = SEVERE ############################################################ # Handler specific properties. # Describes specific configuration info for Handlers. ############################################################ # default file output is in user's home directory. java.util.logging.FileHandler.pattern = %h/applicationLog%u.xml java.util.logging.FileHandler.formatter = au.com.forward.logging.LoggingXMLFormatter ############################################################ # Facility specific properties. # Provides extra control for each logger. ############################################################ # messages: au.com.forward.ExampleLoggingApplication.level = FINEST