Lemur UnsatisfiedLinkError: android.util.Log.isLoggable()

I followed the Lemur “Getting Started” page but the application crashes and give me an UnsatisfiedLink Error.
I referenced all of the required library’s but I just cant get it to work. Thanks.

You must have added all of the slf4j jars. You don’t need to do that. You only need to add the api and one implementation.

The linked page says:
“slf4j version 1.7.5 or later, plus an adapter for your preferred logging framework.”

…ie: Just ONE adapter… not all of them. Your error indicates that you’ve added the android logger as a dependency. Don’t do that unless you are running on android.

Note: if you just want to continue to use Java’s built in logging then you just need the:
slf4j-jdk14-1.7.5.jar
…jar.

And: slf4j-api-1.7.13.jar of course.

I didn’t add all of them. I just didn’t add slf4j-jdk14-1.7.13.jar

Also thanks for the reply!

Well, maybe it’s picking up the android one from somewhere else… but normally if you don’t have an implementation jar it will just default to nothing and log a warning.

Huh that’s odd then. It’s all working now since I added the last jar.