############################################################ # EMCA Logging Configuration File # ############################################################ ############################################################ # Global properties ############################################################ handlers= java.util.logging.ConsoleHandler # Default global logging level. .level= INFO ############################################################ # Handler specific properties. # Describes specific configuration info for Handlers. ############################################################ # default file output is in user's home directory. java.util.logging.FileHandler.pattern = java.util.logging.FileHandler.limit = 500000 java.util.logging.FileHandler.count = 10 java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter java.util.logging.FileHandler.append=true # Limit the message that are printed on the console to INFO and above. # If disabling console log, set the level to OFF java.util.logging.ConsoleHandler.level = OFF java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter ############################################################ # EMCA specific properties. ############################################################ # For example, set the com.xyz.foo logger to only log SEVERE # messages: oracle.sysman.emcp.level = CONFIG