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 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ############################################################
  2. # Default Logging Configuration File
  3. #
  4. # You can use a different file by specifying a filename
  5. # with the java.util.logging.config.file system property.
  6. # For example java -Djava.util.logging.config.file=myfile
  7. ############################################################
  8. ############################################################
  9. # Global properties
  10. ############################################################
  11. # "handlers" specifies a comma separated list of log Handler
  12. # classes. These handlers will be installed during VM startup.
  13. # Note that these classes must be on the system classpath.
  14. # By default we only configure a ConsoleHandler, which will only
  15. # show messages at the INFO and above levels.
  16. #handlers= java.util.logging.ConsoleHandler
  17. # To also add the FileHandler, use the following line instead.
  18. #handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
  19. handlers= java.util.logging.FileHandler
  20. # Default global logging level.
  21. # This specifies which kinds of events are logged across
  22. # all loggers. For any given facility this global level
  23. # can be overriden by a facility specific level
  24. # Note that the ConsoleHandler also has a separate level
  25. # setting to limit messages printed to the console.
  26. .level= INFO
  27. ############################################################
  28. # Handler specific properties.
  29. # Describes specific configuration info for Handlers.
  30. ############################################################
  31. # default file output is in user's home directory.
  32. java.util.logging.FileHandler.pattern = %h/java%u.log
  33. #java.util.logging.FileHandler.limit = 50000
  34. java.util.logging.FileHandler.count = 1
  35. #java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
  36. java.util.logging.FileHandler.formatter = java.util.logging.SimpleFormatter
  37. java.util.logging.FileHandler.level = FINER
  38. # Limit the message that are printed on the console to INFO and above.
  39. java.util.logging.ConsoleHandler.level = FINER
  40. java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
  41. ############################################################
  42. # Facility specific properties.
  43. # Provides extra control for each logger.
  44. ############################################################
  45. # For example, set the com.xyz.foo logger to only log SEVERE
  46. # messages:
  47. #com.xyz.foo.level = SEVERE
  48. org.aspectj.weaver.level = FINER
  49. org.aspectj.weaver.loadtime.level = FINER
  50. org.aspectj.weaver.weaver.level = FINER