Hello,<br><br>I'm new to logback but read your documentation, I an not receiving any output to my logfile. Here is my configuration file, following this is the output from logback to the console. The only thing I notice is a warning about a TriggerPolicy. If this is the case do you have example syntax?<br>---<br><br><?xml version="1.0" encoding="UTF-8"?><br><br><configuration><br> <br> <appender name="bitranlog" class="ch.qos.logback.core.rolling.RollingFileAppender"><br> <param name="append" value="true"/><br> <param name="MaxBackupIndex" value="1"/><br> <param name="file" value="/tmp/bitran.log"/><br> <param name="MaxFileSize" value="5MB"/><br> <layout class="ch.qos.logback.classic.PatternLayout"><br> <param name="pattern" value="%d [%-15.15t] %-5p %-30.30c{1} -
%m%n"/><br> </layout><br> </appender><br> <br> <logger name="org.accma.concentrator.services.bitran.BiTranService" additivity="false"><br> <level value="debug"/><br> <appender-ref ref="bitranlog"/><br> </logger><br> <br> <root><br> <level value="debug" /><br> <appender-ref ref="bitranlog" /><br> </root><br><br></configuration><br><br>---<br>Here is console output when using LoggerStatusPrinter:<br>---<br><br>startElement [configuration]<br>startElement [appender]<br>startElement [param]<br>startElement [param]<br>LOGBACK: No context given for ch.qos.logback.core.util.PropertySetter@8c5ea2<br>startElement [param]<br>startElement [param]<br>LOGBACK: No context given for ch.qos.logback.core.util.PropertySetter@198defc<br>startElement [layout]<br>startElement
[param]<br>startElement [logger]<br>startElement [level]<br>startElement [appender-ref]<br>startElement [root]<br>startElement [level]<br>startElement [appender-ref]<br>INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - Ignoring debug attribute.<br>INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch<br>.qos.logback.core.rolling.RollingFileAppender]<br>INFO in ch.qos.logback.core.joran.action.AppenderAction - Appender named as [bitranlog]<br>WARN in ch.qos.logback.core.rolling.RollingFileAppender[bitranlog] - Please set a TriggeringPolicy <br>for the RollingFileAppender named bitranlog<br>INFO in ch.qos.logback.core.joran.action.AppenderAction - Popping appender named [bitranlog] from t<br>he object stack<br>INFO in ch.qos.logback.classic.joran.action.LevelAction - org.accma.concentrator.services.bitran.Bi<br>TranService level set to DEBUG<br>INFO in ch.qos.logback.core.joran.action.AppenderRefAction - Attaching
appender named [bitranlog to<br> Logger[org.accma.concentrator.services.bitran.BiTranService]<br>INFO in ch.qos.logback.classic.joran.action.LevelAction - root level set to DEBUG<br>INFO in ch.qos.logback.core.joran.action.AppenderRefAction - Attaching appender named [bitranlog to<br> Logger[root]<br><br><br>Thanks, S.D.<br><br>