<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
--></style>
</head>
<body class='hmmessage'>
I have a top-level config file logback.xml and another file logback-included.xml. If I set the scan=true in the logback.xml file, will the included file also be scanned for changes? Is scan=true applicable for <included> tag as well? I find that the scanning doesn't happen, when I change the included file. Should I do anything special?<br><br>--- logback.xml ---<br><configuration scan="true"><br> <include file="logback-included.xml" /><br></configuration><br><br>--- logback-included.xml ---<br><included scan="true"><br> <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"><br> <file>mylog.log</file><br> <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"><br> <FileNamePattern>mylog.log.%d{yyyy-MM-dd}</FileNamePattern><br> </rollingPolicy><br> <encoder><br> <pattern>%date %level [%thread] %logger{15} %msg%n</pattern><br> </encoder><br> </appender><br> <br> <root><br> <level value="DEBUG" /><br> <appender-ref ref="FILE" /><br> </root><br></included><br> <br /><hr />Hotmail has tools for the New Busy. Search, chat and e-mail from your inbox. <a href='http://www.windowslive.com/campaign/thenewbusy?ocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_1' target='_new'>Learn more.</a></body>
</html>