有没有办法关闭 Akka 的调试输出?

发布于 2024-12-12 10:35:52 字数 580 浏览 0 评论 0原文

在使用 Akka 时,我实现了一个简单的命令行应用程序。

但是 Akka 也会将语句打印到命令行,例如:

[GENERIC] [27.10.11 22:57] [RemoteClientStarted(akka.remote.netty.NettyRemoteSupport@b07f45d,/127.0.0.1:3000)]
[GENERIC] [27.10.11 22:57] [RemoteClientConnected(akka.remote.netty.NettyRemoteSupport@b07f45d,/127.0.0.1:3000)]
[GENERIC] [27.10.11 22:57] [RemoteClientShutdown(akka.remote.netty.NettyRemoteSupport@b07f45d,/127.0.0.1:3000)]
[GENERIC] [27.10.11 22:57] [RemoteClientDisconnected(akka.remote.netty.NettyRemoteSupport@b07f45d,/127.0.0.1:3000)]

有没有办法禁用此调试输出(或将其重定向到其他地方)?

While working with Akka, I have implemented a simple command line app.

But Akka also prints statements to the command line like:

[GENERIC] [27.10.11 22:57] [RemoteClientStarted(akka.remote.netty.NettyRemoteSupport@b07f45d,/127.0.0.1:3000)]
[GENERIC] [27.10.11 22:57] [RemoteClientConnected(akka.remote.netty.NettyRemoteSupport@b07f45d,/127.0.0.1:3000)]
[GENERIC] [27.10.11 22:57] [RemoteClientShutdown(akka.remote.netty.NettyRemoteSupport@b07f45d,/127.0.0.1:3000)]
[GENERIC] [27.10.11 22:57] [RemoteClientDisconnected(akka.remote.netty.NettyRemoteSupport@b07f45d,/127.0.0.1:3000)]

Is there a way to disable this debugging output (or redirect it to somewhere else)?

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

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

发布评论

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

评论(2

一曲爱恨情仇 2024-12-19 10:35:52

也许文档可以提供帮助:

EventHandler

Perhaps the docs can be of assistance:

EventHandler

长亭外,古道边 2024-12-19 10:35:52

做了一些事情来隐藏 [GENERIC] 日志标签。不确定是否需要所有这些,但它似乎有效。

将以下内容添加到我的 akka.conf

 event-handlers = ["akka.event.slf4j.Slf4jEventHandler"]
 event-handler-level = "WARNING"

确保您正在更改正确的 akka.conf,您可能指定了 AKKA_HOME,或者您可能错误地将 akka.conf 放到了类路径中。

还在我的 logback.xml 底部进行了以下更改,

<logger name="akka" level="WARNING"/>
<root level="WARNING">
<!--    <appender-ref ref="stdout"/> -->
<appender-ref ref="R"/>
</root>

您的 logback.xml 应该位于您的 akka.conf 旁边

Did a few things to hide the [GENERIC] log tags. Not sure if all of this is needed, but it seems to work.

Added the following to my akka.conf

 event-handlers = ["akka.event.slf4j.Slf4jEventHandler"]
 event-handler-level = "WARNING"

Make sure you are changing the right akka.conf, you may have an AKKA_HOME specified or you may have dropped an akka.conf onto your classpath by mistake.

Also made the following changes at the bottom of my logback.xml

<logger name="akka" level="WARNING"/>
<root level="WARNING">
<!--    <appender-ref ref="stdout"/> -->
<appender-ref ref="R"/>
</root>

Your logback.xml should live right next to your akka.conf

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