Rolling logback logs on filesize and time

后端 未结 3 2184
无人及你
无人及你 2020-11-29 00:04

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

3条回答
  •  孤城傲影
    2020-11-29 00:50

    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.

提交回复
热议问题