I was expecting scan="true" with scanPeriod="5 seconds" to work with logback configuration in SpringBoot 1.4.2.RELEASE
The error I get on updating a logger level inside is
-ERROR in ch.qos.logback.core.joran.spi.Interpreter@4:39 - no applicable action for [springProfile],
current ElementPath is [[configuration][springProfile]]
Same goes for springProperty
-ERROR in ch.qos.logback.core.joran.spi.Interpreter@12:125 - no applicable action for [springProperty],
current ElementPath is [[configuration][springProperty]]
Without springProfile and springProperty scan happens as expected, but only when changes done in target/classes/logback-spring.xml and not in src/main/resources/logback-spring.xml
Without setting scan, springProfile working as expected.
Maven is being used for this SpringBoot Web app.