简单套接字服务器
我使用 logback 的 SimpleSocketServer 类作为守护进程来记录事件。如果一个进程正在记录到守护进程(SimpleSocketServer),那么一切都很好,但是如果两个进程同时开始记录到守护进程,则记录事件要么被跳过,要么从不接收。有没有人处理过 logback 和类似的问题?谢谢。
I am using logback's SimpleSocketServer class as a daemon to log events. If one process is logging to the the daemon(SimpleSocketServer) all is fine, however if two processes begin to log to the daemon at the same time then logging events are either skipped or never received. Has anyone ever dealt with logback and a similar problem? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能是一个 logback 错误吗?如果您认为是,请输入错误报告。
Can this be a logback bug? If you think it is, please enter a bug report.
他们的 SocketNode 类犯了一个常见错误,即在其构造函数中执行 I/O 或 DNS 操作,这会阻止创建它的接受循环。所有这些都应该推迟到它的 run() 方法。
Their SocketNode class makes the common mistake of doing I/O or DNS operations in its constructor, which holds up the accept loop that creates it. All that should be deferred to its run() method.