我想调试 Open Libery (OL) 中的网络层,重点是保持活动行为。为此,我想在 OL 的 server.xml 中启用跟踪。类似于以下内容:
<logging traceSpecification="com.ibm.ws.*=all:io.openliberty.*=all"/>
问题 1:当我想专注于(tcp)网络时,我应该使用什么包名称?
问题2:如何配置OL以查看stdout中的跟踪信息? (我正在将我的服务器部署到 CloudFoundry)
谢谢。
TCPChannel=all
这样的跟踪字符串可能就是您想要的正在寻找。另请参阅 https://www.ibm.com/support/pages/mustgather-read-first-websphere-application-server-and-libertytraceFileName="stdout"
仅当启用附加或详细跟踪时才会创建trace.log 文件。 stdout 被识别为特殊值,并导致跟踪定向到原始标准输出流。