<div dir="ltr"><div><div><div><div>The config shown below is creating the file, but nothing is writing to it, and some classes are not logging at all. Those that do log, it's all going to stdout. Obviously, I've done something stupid, but I can't figure out what.<br><br></div>Here is some output from stdout that looks like it's from logback:<br><br>Got 12 errors.<br>INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - debug attribute not set<br>INFO in ch.qos.logback.core.joran.action.TimestampAction - Using current interpretation time, i.e. now, as time reference.<br>INFO in ch.qos.logback.core.joran.action.TimestampAction - Adding property to the context with key="bySecond" and value="20170314T113135" to the LOCAL scope<br>INFO in ch.qos.logback.core.joran.action.AppenderAction - About to instantiate appender of type [ch.qos.logback.core.FileAppender]<br>INFO in ch.qos.logback.core.joran.action.AppenderAction - Naming appender as [FILE]<br>ERROR in ch.qos.logback.core.joran.spi.Interpreter@7:33 - no applicable action for [immediateFlush], current ElementPath  is [[configuration][appender][immediateFlush]]<br>INFO in ch.qos.logback.core.joran.action.NestedComplexPropertyIA - Assuming default type [ch.qos.logback.classic.encoder.PatternLayoutEncoder] for [encoder] property<br>INFO in ch.qos.logback.core.FileAppender[FILE] - File property is set to [GraphDBTest-20170314T113135.log]<br>INFO in ch.qos.logback.classic.joran.action.RootLoggerAction - Setting level of ROOT logger to TRACE<br>INFO in ch.qos.logback.core.joran.action.AppenderRefAction - Attaching appender named [FILE] to Logger[ROOT]<br>INFO in ch.qos.logback.classic.joran.action.ConfigurationAction - End of configuration.<br>INFO in ch.qos.logback.classic.joran.JoranConfigurator@13b6aecc - Registering current configuration as safe fallback point<br><br></div>I would really appreciate a suggestion as to what I'm doing wrong.<br><br></div>Thank you,<br><br></div>Donald<br><br><br><configuration><br>            <br>            <timestamp datePattern="yyyyMMdd'T'HHmmss" key="bySecond"/><br><br>            <appender class="ch.qos.logback.core.FileAppender" name="FILE"><br>                <file>GraphDBTest-${bySecond}.log</file><br>                <immediateFlush>true</immediateFlush><br><br>                <encoder><br>                    <pattern>%date %level [%thread] %logger{10} [%file:%line] %msg%n</pattern><br>                </encoder><br>            </appender><br><br>            <root level="TRACE"><br>                <appender-ref ref="FILE"/><br>            </root><br><br>        </configuration><br><br><div><div><div><div><br><br></div></div></div></div></div>