I have a Java application that has to write it's logfiles to a write-only filesystem. The current logging configuration has a TimeBasedRollingPolicy that rolls over every day. Unfortunately, the rollover fails on the write-only filesystem since a rename is not allowed.I have a Java application that has to write it'