Tagged Questions
1
vote
0answers
47 views
BeanNameAutoProxyCreator on Grails 2 isn't working
I want use spring and log4jdbc in Grails 2.2.1 to catch the jdbc info, but it isn't working and is returning an error.
Here is the log4j config in config.groovy:
info ...
0
votes
2answers
63 views
grails log4j active logger
Is it possible to activate | deactivate logger through Config.groovy?
for ex:
log4j = {
appenders {
file name:'connections', file: '/tmp/connection.log'
file name:'view', ...
0
votes
3answers
232 views
log4j : parameter appender file name
I use Grails
In my file Config.groovy I create an appender as:
log4j = {
appenders {
file name:'myAppli', file:'/tmp/myAppli.log'
}
...
}
Is it possible to parameter file path of ...
0
votes
1answer
70 views
Getting an error “unable to resolve class org.jfree.util.Log grails” after upgrading grails from 1.3.x to 2.0.4
I have app developed in grails 1.3.x version, i upgraded to 2.0.4, I have a Log.debug() statement and importing import org.jfree.util.Log package, When i run the app, its giving me the error.
unable ...
0
votes
0answers
143 views
Grails 2.0 config ignores system properties
I am using grails 2.0.4, I have configured SMTPAppender to send mails using gmail with port 587 and STARTTLS enabled.
System.setProperty 'mail.smtp.port', '587'
System.setProperty ...
3
votes
1answer
1k views
Use of 'grails.logging.jul.usebridge' in grails config.groovy
I am a newbie for log4j and sl4j, I am using grails 2.0.4 and in config.groovy there is a line
grails.logging.jul.usebridge = false for prod
&
grails.logging.jul.usebridge = true for dev
I ...