system.out.println原来是输出在console控制台里面, 要用log4j把它输出在tomcat日志里,怎么搞啊?我只能获得tomcat的状态等信息,不知道怎么获得程序里用system.out.println()输出的信息,高人指教下啊
5 个解决方案
System.setOut(new PrintStream(new FileOutputStream(new File("your file path"))));
哎,也没个高手帮帮我,搞了一天,用笨方法把system.out.println换成了logger.debug(),谢谢两位关注了