I\'ve been trying to set up a simple logback project to roll my log files by date and by filesize, and so far I have been unable to get my appender to roll over to another f
You should be able to set up your log using a FileHandler.
http://java.sun.com/j2se/1.4.2/docs/api/java/util/logging/FileHandler.html#FileHandler(java.lang.String, int, int)
This takes a file size limit and rotates the log when it hits that limit.