annotate src/main/resources/log4j.properties @ 2:91703efb1d29

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