复制并重定向 System.err 流

发布于 2024-10-15 18:19:53 字数 131 浏览 2 评论 0原文

我目前在我的应用程序中使用 java.util.logger。它将输出发送到 System.err。我需要它继续执行此操作,但我还需要将该输出发送到其他地方。

有没有办法复制 System.err 流,以便它可以发送到两个不同的源?

I am currently using java.util.logger in my application. It sends its output to System.err. I need it to continue to do this, but I also need to send that output to something else.

Is there a way to copy the System.err stream so that it can send to two different sources?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨与橙与城 2024-10-22 18:19:53

一如既往,当注意到人们引用 java.util.logger 时,我倾向于至少建议查看另一个日志库,例如 logbackslf4j

这篇博客文章描述了一种可以轻松修改以支持您所要求的方法。简而言之,您需要做的是定义一个可以复制其输出的 PrintStream,使用以下命令分配它:

System.setErr(doubleLoggingPrintStream)

As always when note people referencing java.util.logger I feel inclined to at least recommend looking at another logging library, such as logback and slf4j.

This blog post describes a method which can easily be adapted to support what you're asking for. In short what you need to do is define a PrintStream which can duplicate its output, assign this using:

System.setErr(doubleLoggingPrintStream)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文