On 9/6/13 09:53 , Roland wrote:
The Logger tries to load the LogService interface. Once the logger is initialized it will never check this a second time.public Logger(BundleContext context) { m_context = context; try { org.osgi.service.log.LogService.class.getName(); m_isLogClassPresent = true; } catch (NoClassDefFoundError ex) { m_isLogClassPresent = false; } }
Perhaps there is some confusion because this is a different Logger. You are looking in the one in the utils subproject, but the one I'm talking about is in the org.apache.felix.framework package. The framework doesn't use this one either, the framework has its own because it never wants to use a bundle-provided service...this one still does.
-> richard
-- View this message in context: http://apache-felix.18485.x6.nabble.com/How-to-set-default-logger-tp5004867p5004875.html Sent from the Apache Felix - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
--------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

