我正在使用here
中的代码在我的Java程序中编写日志文件public static void main(String[] args) {
Logger logger = Logger.getLogger("MyLog");
FileHandler fh;
try {
// This block configure the logger with handler and formatter
fh = new FileHandler("C:/temp/test/MyLogFile.log");
logger.addHandler(fh);
SimpleFormatter formatter = new SimpleFormatter();
fh.setFormatter(formatter);
// the following statement is used to log any messages
logger.info("My first log");
} catch (SecurityException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
logger.info("Hi How r u?");
}
我的问题是我收到了多个日志文件
答案 0 :(得分:2)
更改以下代码
fh = new FileHandler("C:/temp/test/MyLogFile.log", true);
这不会创建多个文件,而是会附加到同一个文件中。