GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / war / WEB-INF / log4j.properties
bloba0d314e71dd31a5ad4891e0fe12b6dedeb30aee2
1 log4j.appender.stdout=org.apache.log4j.ConsoleAppender
2 log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
3 # Enable logging for everything. Rarely useful
4 log4j.rootLogger=error, stdout
7 # This logger is for your own application artefact logs
8 # Artefacts are logged by their type and optionally class name i.e:
10 # log4j.logger.grails.app.controller.HelloController=debug, stdout
11 # ...will control the logs from just that controller
13 # log4j.logger.grails.app.domain=trace, stdout
14 # ...will control the logs for all domain classes
16 # At the time of writing, supported artefact type ids include:
17 # domain (aka Domain Class), service, dataSource,
18 # controller, tagLib, urlMappings, codec, bootstrap
20 # The default "info" level for all artefacts is set here
21 log4j.logger.grails.app=info,stdout
22 log4j.additivity.grails.app=false
24 ## This logger is for Grails' public APIs within the grails. package
25 log4j.logger.grails=info,stdout
26 log4j.additivity.grails=false
28 ## Enable this logger to log Hibernate output
29 # handy to see its database interaction activity
30 #log4j.logger.org.hibernate=debug,stdout
31 #log4j.additivity.org.hibernate=false
33 # Enable this logger to see what Spring does, occasionally useful
34 #log4j.logger.org.springframework=info,stdout 
35 #log4j.additivity.org.springframework=false
37 # This logger covers all of Grails' internals
38 # Enable to see whats going on underneath. 
39 log4j.logger.org.codehaus.groovy.grails=info,stdout 
40 log4j.additivity.org.codehaus.groovy.grails=false
42 # This logger is useful if you just want to see what Grails
43 # configures with Spring at runtime. Setting to debug will show
44 # each bean that is configured
45 log4j.logger.org.codehaus.groovy.grails.commons.spring=info,stdout
46 log4j.additivity.org.codehaus.groovy.grails.commons.spring=false  
47                           
48 # Interesting Logger to see what some of the Grails factory beans are doing
49 log4j.logger.org.codehaus.groovy.grails.beans.factory=info,stdout
50 log4j.additivity.org.codehaus.groovy.grails.beans.factory=false
52 # This logger outputs what Grails is doing dynamically under the covers
53 log4j.logger.org.codehaus.groovy.grails.commons.metaclass=info,stdout
54 log4j.additivity.org.codehaus.groovy.grails.commons.metaclass=false   
56 # These two loggers are for tracking what plugins are doing
57 log4j.logger.org.codehaus.groovy.grails.plugins=info,stdout 
58 log4j.additivity.org.codehaus.groovy.grails.plugins=false
59 log4j.logger.grails.spring=info,stdout 
60 log4j.additivity.grails.spring=false