Mercurial > public > ssdtforms
annotate src/main/resources/log4j.properties @ 4:5fb47fac1404 tip
fix span for jira issue
author | smith@nwoca.org |
---|---|
date | Tue, 01 Nov 2016 14:38:33 -0400 |
parents | 91703efb1d29 |
children |
rev | line source |
---|---|
0 | 1 # Default to info level output; this is very handy if you eventually use Hibernate as well. |
2 | 2 log4j.rootCategory=error, A1 |
0 | 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. | |
2 | 13 log4j.category.org.ssdt_ohio.devel.forms.services.AppModule.TimingFilter=error |
0 | 14 |
15 # Outputs a list of pages, components and mixins at startup. | |
2 | 16 log4j.category.org.apache.tapestry5.services.TapestryModule.ComponentClassResolver=error |
0 | 17 |
18 # Outputs startup statistics; elapsed time to setup and initialize the registry, a list of | |
f4f8570d1c56
initial OTP form
smith@nwoca.org |