Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
默认情况下,进程服务器上所有进程和应用程序的日志、错误和跟踪信息都写入 SystemOut.log,但我们的要求是只记录请求和响应。管理控制台中是否有任何设置可以执行此操作?
提前致谢.....
当 WebSphere 启动时,它将SystemOut.log文件指定为所有System.out打印都将转到的文件。因此,无论何时发出任何代码,例如,System.out.println输出最终都会进入SystemOut.log- 您的应用程序代码和WebSphere 的内部代码都是如此。
SystemOut.log
System.out
System.out.println
要达到您想要的效果,请考虑使用一些日志框架,例如Log4J、SLF4J或 Java 的标准日志 API。