I'm testing on 1.1.8-SNAPSHOT and found that my existing Groovy configuration file is no longer working. An exception is thrown on
This is likely caused by commit 03e26684d43066d53dbf926e060a73d43bee77fd, where the maxFileSize property seems to be changed from type String to type FileSize.
It is possible to workaround this issue by changing logback.groovy to:
import ch.qos.logback.core.util.FileSize;
...
maxFileSize=FileSize.valueOf("50MB");
When moving back to release 1.1.7 the error is gone.
|