private static WriterAppender createAppender(File logFile)
throws IOException {
HTMLLayout layout = new HTMLLayout();
RollingFileAppender app = new RollingFileAppender(layout,
logFile.getAbsolutePath(), true);
app.setMaxFileSize("3MB");
app.setMaxBackupIndex(3);
return app;
}
HtmlLogFile.java 文件源码
java
阅读 26
收藏 0
点赞 0
评论 0
项目:olca-app
作者:
评论列表
文章目录