日志备份 - 以编程方式设置日志文件名
我正在使用 logback,并且我正在尝试在我的 Java 程序中以编程方式设置日志文件名(类似于以编程方式设置 Logback Appender 路径),并且我尝试按如下方式调整该解决方案:
在日志回测中.xml:
<appender name="FILE" class="ch.qos.logback.core.FileAppender">
<file>log/${log_file_name}.log</file>
...
然后在我的Java程序中再次:
String logFileName = "" + System.currentTimeMillis(); // just for example
System.setProperty("log_file_name", logFileName);
LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory();
ContextInitializer ci = new ContextInitializer(lc);
lc.reset();
try
{
// I prefer autoConfig() over JoranConfigurator.doConfigure() so I
// wouldn't need to find the file myself.
ci.autoConfig();
}
catch (JoranException e)
{
// StatusPrinter will try to log this
e.printStackTrace();
}
StatusPrinter.printInCaseOfErrorsOrWarnings(lc);
但是,结果是两个日志,一个已满并按我想要的名称命名,例如,“1319041145343.log”,另一个为空并命名为“log_file_name_IS_UNDEFINED.log”。如何阻止创建其他空日志文件?