标签:
元素<configuration>拥有三个属性,具体的属性说明如下:
a.当属性scan为true时,修改后配置文件将被重新加载。默认值为true。
b.属性scanPeriod控制扫描的时间周期,其值可以带时间单位,包括"milliseconds,seconds, minutes, hours",如果没有给出时间单位,将被默认为毫秒。
c.当元素<configuration>的属性debug为true,将打印logback的内部状态。默认值为false。
示例:
<configuration scan="true" scanPeriod="1 seconds" debug="false"> <!-- ... other elements ... --> </configuration>
标签:
原文地址:http://my.oschina.net/dengjianming/blog/494694