You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

logging.properties 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ############################################################
  2. # FOP Logging Configuration File
  3. #
  4. # For the meaning of entries in this file, see the default
  5. # file $JDK_HOME/jre/lib/logging.properties.
  6. # This file is specified in place of the default by setting
  7. # the java.util.logging.config.file system property.
  8. ############################################################
  9. ############################################################
  10. # Global properties
  11. ############################################################
  12. handlers = java.util.logging.ConsoleHandler
  13. .level = INFO
  14. ############################################################
  15. # Handler specific properties.
  16. # Describes specific configuration info for Handlers.
  17. ############################################################
  18. # default file output is in user's home directory.
  19. java.util.logging.FileHandler.pattern = %h/java%u.log
  20. java.util.logging.FileHandler.limit = 50000
  21. java.util.logging.FileHandler.count = 1
  22. java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
  23. # Limit the message that are printed on the console to CONFIG and above.
  24. java.util.logging.ConsoleHandler.level = CONFIG
  25. java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
  26. ############################################################
  27. # Facility specific properties.
  28. # Provides extra control for each logger.
  29. ############################################################
  30. # For example, set the com.xyz.foo logger to only log SEVERE
  31. # messages:
  32. org.apache.fop.level = ALL