<div dir="ltr"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">The second error, about ch.qos.logback.core.rolling.helper.AsynchronousCompressor looks like the culprit for the log file mess.  I have no idea why it would have been doing any rotation at 15:05, though. Maybe the first thread crash/termination somehow caused the later errors.<br></blockquote><div><br></div><div>I'm fairly certain the crash somehow triggered creation of new file appenders before the first set had been torn down. The bug Daniel cited, and what we've observed in own apps that use logback, is that .tmp files are always caused by multiple appenders attached to the same file (when compression is enabled). If this problem becomes really annoying, you can try adding prudent="true" [1] to your appenders, which should fix it at the cost of reduced throughput. Or you could consider not compressing files, but I recall there are other undesirable side effects of multiple appenders on the same file.</div><div><br></div><div>Best case you would address the root problem of creating multiple appenders on the same files.</div><div><br></div><div>M</div><div><br></div><div>[1] <a href="http://logback.qos.ch/manual/appenders.html#FileAppender">http://logback.qos.ch/manual/appenders.html#FileAppender</a></div><div><br></div></div></div>