On Fri, May 19, 2017 at 9:38 PM, Nicolas Peltier <[email protected]> wrote: > org.osgi.service.cm.Configuration.update(dict) from sling pipes bundle does > not trigger LoggerManagedServiceFactory.updated
How are you creating the config instance from ConfigurationAdmin instance? You should use the listConfiguration approach [1] otherwise the config instance would get "bound" to the calling bundle [2] which would prevent that config from getting used by the Commons Log bundle Chetan Mehrotra [1] https://github.com/apache/sling/blob/trunk/installer/factories/configuration/src/main/java/org/apache/sling/installer/factories/configuration/impl/ConfigUtil.java#L191 [2] https://osgi.org/javadoc/r4v42/org/osgi/service/cm/ConfigurationAdmin.html#getConfiguration(java.lang.String)
