Java单个日志文件

时间:2014-11-15 09:08:12

标签: java

我正在使用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?");  

}

我的问题是我收到了多个日志文件

1 个答案:

答案 0 :(得分:2)

更改以下代码

fh = new FileHandler("C:/temp/test/MyLogFile.log", true);

这不会创建多个文件,而是会附加到同一个文件中。