Hi,

I've got a bundle containing only one bean using SLF4J API for logging. In the bean implementation, there's a method list() with logger.info("Message") call in it. This method is called from bean init method (invoked by Spring on context startup) and is also exposed as @ManagedOperation.

I've noticed that when this bundle is started, log statement "Message" appears in bundle speficic trace.log as well as in S2AP trace.log. However, when I invoke the operation using JConsole, the statement is printed to S2AP trace.log only.

Any idea how to solve this logging issue? Thanks.

Jaro