Tagged Questions
0
votes
1answer
45 views
Android SLF4J: NoClassDefFoundError android.util.Log
I am porting an existing OSGi/Felix/iPOJO app from a windows over to Android. The app is using SLF4J. I have slf4j-android deployed as a bundle. However I am getting a ...
0
votes
1answer
222 views
How can I include slf4j-api, logback and custom implementation of slf4j.impl in OSGI?
I've previously implemented OSGI logging to files, using slf4j-api, logback-core and logback-classic bundles.
I'd now like to intercept log calls in a seperate bundle (to show them in a webpage ...
4
votes
4answers
476 views
OSGi + Logback + slf4j - Eclipse Run Configuration
here is my configuration:
We are developing an OSGi application and want to include logging. I decided to use slf4j + logback.
We are using Eclipse as an IDE and Tycho to benefit from the Eclipse ...
0
votes
1answer
199 views
logback via slf4j as separate osgi bundle
We have osgi application in karaf and want to have logging properties inside bundle jar to keep the logging config in sources (currently they are in karaf/etc/org.ops4j.pax.logging.cfg)
UPDATE: in ...
2
votes
0answers
375 views
Avoid creating slf4j / logback loggers during default configuration phase on Websphere Liberty Profile
When deploying an Enterprise Bundle Archive - EBA (containing several blueprint services) on Websphere Liberty Profile 8.5 I'm getting the following error messages on startup.
[23/10/12 8:07:32:725 ...
0
votes
2answers
894 views
How to provide a log4j.properties to an OSGI Bundle (Eclipse-Plugin)?
Project setup:
Logging-1.0.jar
contains a Logger.class which uses slf4j/log4j
depends on slf4j-api.jar, slf4j-log4j.jar, log4j.jar
LoggingOSGI-1.0.jar
wraps the logging project
contains an ...
0
votes
3answers
201 views
OSGi logging from legacy apps?
Let's say I have four legacy jars:
my-library.jar
my-app.jar
my-other-app.jar
log4j.jar
"My App" and "My Other App" are unrelated applications, both with main() functions. They both use various ...
1
vote
1answer
384 views
Commons Logging bundle in OSGi runtime
I am currently trying to get a bundled started in Equinox.
This bundle requires commons-logging.
I tried including the latest commons-logging jar from Maven Central. No luck.
I then moved to slf4j. ...
1
vote
1answer
315 views
Logging Jersey using SLF4J in OSGi
I am having problems viewing Request/Response information using Jersey within OSGi (Karaf). Apparently Jersey uses JUL logging, so it has to be bridged to SLF4J logging. I do this with the following ...
0
votes
1answer
330 views
Weird missing constraint with Logback under Eclipse
I have a feature-based launch configuration for an Eclipse RCP product. The feature includes ch.qos.logback.classic, ch.qos.logback.core 0.9.29, and org.slf4j.api 1.6.1. "Validate plugins" shows this ...
1
vote
1answer
723 views
Logging for multiple OSGi bundles working together
Working on an application which involves multiple OSGi bundles. SLF4j is the underlying logging framework. Do I need to configure the logger.properties separately for each bundle or is there any ...