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