Hello. Actually, there is not lot of information at all. I 'm running a Knopflerfish OSGI framework version 1.5
I installed the correspondent logback .jars
com.springsource.ch.qos.logback.classic-0.9.24.jar
com.springsource.ch.qos.logback.core-0.9.24.jar and
com.springsource.slf4j.api-1.6.1.jar
and lead my logging output to logback. Beside of this, I started groovy runtime bundle in OSGI groovy-all-2.1.5.jar
Now, I found out what the reason was. I had to include the imports
import ch.qos.logback.core.*;
import ch.qos.logback.core.encoder.*;
import ch.qos.logback.core.read.*;
import ch.qos.logback.core.rolling.*;
import ch.qos.logback.core.status.*;
import ch.qos.logback.classic.net.*;
import ch.qos.logback.classic.encoder.PatternLayoutEncoder;
import ch.qos.logback.classic.Level
I think the OSGI integration does not work properly, does it?
Ewgenij,
I don't know about OSGI. But I do know that there is not enough information here for others to help you.
If you include some more information about how you have setup logback and what environment you are running it in, others might be able to help.
David
Do you know what the reason could be?
BR
Ewgenij
Do you want some help? Can you include some technical information? Version numbers, config files, expected vs actual results?
David
Hello, I created a groovy configuration file but the logging does not create an output with it. So, I think I made some error there. But how can I debug the file? I do not see any error output anywhere?
BR
Ewgenij Sokolovski