log4j.properties 1.2 KB

12345678910111213141516171819202122232425262728
  1. # Log configuration for Xtext logging.
  2. # This log configuration will be used for the UI parts of Xtext.
  3. #
  4. # For your convenience: valid log levels are (from least to most significant):
  5. # TRACE, DEBUG, INFO, WARN, ERROR and FATAL
  6. # Log4J manual: http://logging.apache.org/log4j/1.2/manual.html
  7. # Xtext log configuration info: http://wiki.eclipse.org/Xtext_Project_Plan/Features/Logging
  8. # Root logger configuration. Don't change this.
  9. log4j.rootLogger=DEBUG, default
  10. # This appender will write to the stdout console
  11. log4j.appender.default=org.apache.log4j.ConsoleAppender
  12. log4j.appender.default.layout=org.apache.log4j.PatternLayout
  13. log4j.appender.default.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n
  14. # This appender will write to the Eclipse error log. It will ONLY log ERROR and FATAL messages.
  15. log4j.appender.eclipse=org.eclipse.xtext.logging.EclipseLogAppender
  16. log4j.appender.eclipse.layout=org.apache.log4j.PatternLayout
  17. log4j.appender.eclipse.layout.ConversionPattern=%c %x - %m%n
  18. # Configure your log categories below:
  19. log4j.logger.org.eclipse=WARN
  20. log4j.logger.org.eclipse.xtext=WARN
  21. log4j.logger.org.eclipse.xtext.ui.editor.outline=WARN
  22. log4j.logger.org.eclipse.xtext.ui.editor.contentassist.antlr.internal=WARN