I am trying to use the Apache Felix LogService in my own bundles to provide logging to several bundles (i use a jdk-log delegation to make logging as simple as possible)
However, the LogService-Bundle itself seems to start after my bundles. Although logging is possible after some time when using a service listener, the very first logging messages get lost since the service is not registered at this time (they are not really lost, but they are logged by the jdk rather than by the service). So if i try to get a LogService ServiceReference at the beginning of the start method in my bundles i get a null object. After some time the service listener notices the registration of the LogService and everything works... My question now is: [b]Is it possible to force the LogService bundle to start before my own bundles, so that logging is possible from the very first beginning?[/b] Regards, Niko -- View this message in context: http://www.nabble.com/LogService-start-order---can-start-be-forced-before-oth%C3%A9r-bundles--tp26074675p26074675.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]

