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 test-app.

I have included the following in BuildConfig.groovy which I thought is enough:

inherits("global") {
    excludes "slf4j-log4j12"
}

[...]

dependencies {
    build 'ch.qos.logback:logback-core:0.9.29', 'ch.qos.logback:logback-classic:0.9.29'
    runtime 'ch.qos.logback:logback-core:0.9.29', 'ch.qos.logback:logback-classic:0.9.29'
}

I cannot find any more references to Log4J and have no idea where this call comes from?!

I am also trying replace Grails slf 1.5.8 by 1.6.2 and get the following in the console despite having excluded slf from all Grails modules:

SLF4J: The requested version 1.6 by your slf4j binding is not compatible with [1.5.5, 1.5.6, 1.5.7, 1.5.8]
SLF4J: See http://www.slf4j.org/codes.html#version_mismatch for further details.

Thanks in advance for any help

Regards

Jonas

link|improve this question

53% accept rate
feedback

3 Answers

Logback 0.9.21 and above depends on slf4j-api 1.6 which is what that error is telling you.

Add dependencies for org.slf4j:slf4j-api:1.6

link|improve this answer
feedback

have you seen this blog entry?

http://www.lazygun.net/grails-replacing-log4j-with-logback

link|improve this answer
feedback

I have tried to do that by adding the following dependency:

compile 'org.slf4j:slf4j-api:1.6.2'

And excluded the following (in BuildConfig.groovy as well as the pom.xml):

excludes "slf4j-log4j12"
excludes "jul-to-slf4j"
excludes "jcl-over-slf4j"

Still getting the warning plus the ClassNotFoundError of log4J classes. I cannot figure out where it is trying to instantiate the logging.

link|improve this answer
Not I also receive the error Caused by: java.lang.ClassNotFoundException: org.apache.commons.logging.LogFactory when running grails dependency-report – Jonas Nov 7 '11 at 23:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.