我正在开发一个Android应用,遇到了将日志文件保存到磁盘的需求。经过搜索和测试之后,sl4jandroid似乎是一个不错的选择。我对这种抽象有一个疑问:
配置:
public void configureLogging(){
LoggerConfiguration.configuration()
.removeRootLogcatHandler()
.addHandlerToRootLogger(new CrashlyticsLoggerHandler());
FileLogHandlerConfiguration fileHandler = LoggerConfiguration.fileLogHandler(this);
//4mb max limit log file size
fileHandler.setLogFileSizeLimitInBytes(4096*1024);
//2 rotating files
fileHandler.setRotateFilesCountLimit(3);
LoggerConfiguration.configuration().addHandlerToRootLogger(fileHandler);
}
非常感谢您!