如何在 Tomcat 中禁用 java.util.logging?
我发现我的 Web 应用程序第三部分库使用 java.util.logging 并在 catalina.out 中写入许多消息。 是否可以将其重定向到其他文件? 谢谢。
I found that my web application 3-rd part library uses java.util.logging and writes many messages in catalina.out.
Does it possible redirect it to other file(s)?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的建议是将 java.util.logging(这很糟糕)连接到更合理的 API,然后从那里配置您的日志记录。
SLF4J 提供了JUL-to-SLF4J 桥,它可以相当轻松地完成此操作。
My recommendation would be the bridge java.util.logging (which is awful) to a more sensible API, and then configure your logging from there.
SLF4J provides a JUL-to-SLF4J bridge, which can do this fairly easily.