把system.out.println的内容用log4j输出到tomcat日志里方法

本来就不应该在源代码里随意用System.out.println来代替log的功能
log是可以通过配置文件控制开关的,System.out.println不行
你这样做是对的,以后习惯了不用System....就好了

1,System.setOut(new PrintStream(new FileOutputStream(new File("your file path"))));

2,把system.out.println换成了logger.debug()

你可能感兴趣的:(tomcat,log4j,File,Path)