log4j.properties 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Default to info level output; this is very handy if you eventually use Hibernate as well.
  2. log4j.rootCategory=info, A1
  3. # A1 is set to be a ConsoleAppender.
  4. log4j.appender.A1=org.apache.log4j.ConsoleAppender
  5. # A1 uses PatternLayout.
  6. log4j.appender.A1.layout=org.apache.log4j.PatternLayout
  7. log4j.appender.A1.layout.ConversionPattern=[%p] %c{2} %m%n
  8. # Service category names are the name of the defining module class
  9. # and then the service id.
  10. log4j.category.ie.tcd.kdeg.om.portal.services.AppModule.TimingFilter=info
  11. # Outputs a list of pages, components and mixins at startup.
  12. log4j.category.org.apache.tapestry5.services.TapestryModule.ComponentClassResolver=info
  13. # Outputs startup statistics; elapsed time to setup and initialize the registry, a list of
  14. # available services, and a launch banner that includes the Tapestry version number.
  15. log4j.category.org.apache.tapestry5.TapestryFilter=info
  16. # Turning on debug mode for a page's or component's transformer logger
  17. # will show all of the code changes that occur when the
  18. # class is loaded.
  19. # log4j.category.tapestry.transformer.ie.tcd.kdeg.om.portal.pages.Index=debug
  20. # Turning on debug mode for a component's events logger will show all the events triggered on the
  21. # component, and which component methods are invoked as a result.
  22. # log4j.category.tapestry.events.ie.tcd.kdeg.om.portal.pages.Index=debug
  23. # Turning on trace mode for a page's render logger provides extended information about every step
  24. # in rendering (this is not generally helpful). Turning on debug mode will add a one-line
  25. # summary that includes the elapsed render time, which can be useful in tracking down
  26. # performance issues.
  27. # log4j.category.tapestry.render.ie.tcd.kdeg.om.portal.pages.Index=debug
  28. # Turn on some verbose debugging about everything in the application. This is nice initially,
  29. # while getting everything set up. You'll probably want to remove this once you are
  30. # up and running, replacing it with more selective debugging output.
  31. log4j.category.ie.tcd.kdeg.om.portal=debug