Tagged Questions
1
vote
1answer
51 views
Grails deployment to Glassfish and slf4j
I am working on a grails app and have been trying to deploy it to glassfish . However, during deployment I get the following error:
From server logs:
...
0
votes
1answer
153 views
Grails 2.1.1 - Change default injected log object from commons.logging.Log to slf4j.Logger
I've a Grails project where I replaced Log4j with Logback. Now I also want to use the org.slf4j.Logger instead of org.apache.commons.logging.Log class for logging. How can I change the default log ...
0
votes
1answer
118 views
slf4j binding is not compatible
I just deploy my grails app to tomcat and I'm getting SLF4J: The requested version 1.5.8 by your slf4j binding is not compatible with[1.6]
SLF4J: See http://www.slf4j.org/codes.html#version_mismatch ...
0
votes
0answers
86 views
Grails: log4j logging always returns locationInfo inside SLF4JLog class
I have configured log4j in Config.groovy in this way:
log4j {
appenders {
console name:'stdout',
layout: pattern(conversionPattern: '%d{yyyy-MM-dd HH:mm:ss} %-5p %C.%M(%L): ...
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 ...
1
vote
1answer
830 views
Grails 2.x loggers conflict (slf4j, log4j and commons-logging)
After upgrading existing app from Grails 1.3.7 to Grails 2.0.4 (tried 2.0.3 also) I got some kind of slf4j and log4j conflict. Seems that
log4j tries to write to using commons-logging
...
1
vote
1answer
197 views
Upgrading slf4j-api-1.5.8.jar file in Grails (1.3.x) to a newer one, what to consider?
I'm planning to replace log4j with logback. In order to get Groovy configuration (http://logback.qos.ch/manual/groovy.html) to function, I need at least logback-0.9.22.
The problem is that Grails ...
2
votes
1answer
936 views
sl4j error in weblogic when deploying grails application war
I create a WAR for my grails application and when I deploy it in Weblogic 12c server I get the following Exception
<Mar 27, 2012 12:38:55 PM PDT> <Warning> <HTTP> <BEA-101162> ...
4
votes
6answers
2k views
Grails: Replace log4j with logback
I am trying to replace log4j in my Grails app with logback but am always getting a
Embedded error: java.lang.reflect.InvocationTargetException
org.apache.log4j.LogManager
when running run-app or ...
0
votes
1answer
156 views
Logging configuration completely ignored in Config.groovy when deployed as a war?
When I run my application with run-app, logging seems to work correctly. When I deploy as a WAR in tomcat, all my logging configuration is ignored, and I only see
LOGLEVEL logmessage
Example:
...
2
votes
1answer
260 views
Grails 1.3.4 / Terracotta 3.5.1: Deploying a .war file fails
We have a Grails (1.3.4) app running with Terracotta Ehcache 3.3. We are trying to update our Terracotta installation to the latest one, 3.5.1. I added these lines in the BuildConfig.groovy:
...
