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.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
to my code. After that everything worked. It's strange because in the manual I read that these imports are made automatically http://logback.qos.ch/manual/groovy.html Section "Automatic imports"
I think the OSGI integration does not work properly, does it?
Gesendet: Montag, 01. Juli 2013 um 12:12 Uhr
Von: "David Roussel" <[email protected]>
An: "logback users list" <[email protected]>
Betreff: Re: [logback-user] Debug the groovy configuration file
Von: "David Roussel" <[email protected]>
An: "logback users list" <[email protected]>
Betreff: Re: [logback-user] Debug the groovy configuration file
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
David
Hello, I found the error output at the starting console eventually, not on the console of the OSGI framework itself. I posted it here http://mailman.qos.ch/pipermail/logback-user/2013-June/004068.htmlDo you know what the reason could be?BREwgenijGesendet: Freitag, 28. Juni 2013 um 17:56 Uhr
Von: "David Roussel" <[email protected]>
An: "logback users list" <[email protected]>
Betreff: Re: [logback-user] Debug the groovy configuration fileDo you want some help? Can you include some technical information? Version numbers, config files, expected vs actual results?
DavidHello, 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?BREwgenij Sokolovski_______________________________________________
Logback-user mailing list
[email protected]
http://mailman.qos.ch/mailman/listinfo/logback-user
_______________________________________________
Logback-user mailing list
[email protected]
http://mailman.qos.ch/mailman/listinfo/logback-user
_______________________________________________ Logback-user mailing list [email protected] http://mailman.qos.ch/mailman/listinfo/logback-user
