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.

simplelogger.properties 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # SLF4J's SimpleLogger configuration file
  2. # Simple implementation of Logger that sends all enabled log messages, for all defined loggers, to System.err.
  3. # Default logging detail level for all instances of SimpleLogger.
  4. # Must be one of ("trace", "debug", "info", "warn", or "error").
  5. # If not specified, defaults to "info".
  6. org.slf4j.simpleLogger.defaultLogLevel=debug
  7. # Logging detail level for a SimpleLogger instance named "xxxxx".
  8. # Must be one of ("trace", "debug", "info", "warn", or "error").
  9. # If not specified, the default logging detail level is used.
  10. #org.slf4j.simpleLogger.log.xxxxx=
  11. # !!! Uncomment below loggers when you are in trouble
  12. #org.slf4j.simpleLogger.log.org.pf4j.PluginClassLoader=trace
  13. #org.slf4j.simpleLogger.log.org.pf4j.AbstractExtensionFinder=trace
  14. # Set to true if you want the current date and time to be included in output messages.
  15. # Default is false, and will output the number of milliseconds elapsed since startup.
  16. #org.slf4j.simpleLogger.showDateTime=false
  17. org.slf4j.simpleLogger.showDateTime=true
  18. # The date and time format to be used in the output messages.
  19. # The pattern describing the date and time format is the same that is used in java.text.SimpleDateFormat.
  20. # If the format is not specified or is invalid, the default format is used.
  21. # The default format is yyyy-MM-dd HH:mm:ss:SSS Z.
  22. #org.slf4j.simpleLogger.dateTimeFormat=yyyy-MM-dd HH:mm:ss:SSS Z
  23. org.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss
  24. # Set to true if you want to output the current thread name.
  25. # Defaults to true.
  26. #org.slf4j.simpleLogger.showThreadName=true
  27. # Set to true if you want the Logger instance name to be included in output messages.
  28. # Defaults to true.
  29. #org.slf4j.simpleLogger.showLogName=true
  30. # Set to true if you want the last component of the name to be included in output messages.
  31. # Defaults to false.
  32. #org.slf4j.simpleLogger.showShortLogName=false