I am using your com.github.tony19:logback-android:1.1.1-12 library.
After I change my Log Level in Property file, I expect that the Log Level is changed in runtime. But ist doesn't work.
Do you know what could be a Problem?
I have set scan=true and scanPeriod=2 seconds. I have every time after I set the change in properties file to restart the Android App. Because only in this way works.
logback.properties:
root.loglevel=OFF
logback.xml
<include file="${EXT_DIR}/Download/de.hermes.alpha/assets/logbackincludedfile.xml"
optional="true" />
<root level="${root.loglevel:-DEBUG}">
<appender-ref ref="logcat" />
<appender-ref ref="logstash" />
<appender-ref ref="rollingLogFile" />
</root>
Regards, Neda