QuickFixengine:可以限制日志记录吗?

发布于 2024-07-19 08:31:08 字数 195 浏览 4 评论 0原文

quickfixengine 中是否有一个设置可以指定日志级别以限制消息数量已登录? 看来我们登录了很多数据,所以我们想限制一下。 我认为记录太多消息会影响性能(没有任何支持或反对的硬数据)。

In quickfixengine is there a setting to specify the log level to restrict number of messages logged? It seems that we are login a lot of data so we would like to restrict it bit. I assume that logging too many messages should affect performance (don't have any hard data for or against).

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

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

发布评论

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

评论(1

旧人哭 2024-07-26 08:31:08

您没有说明您使用的是哪种语言,但我相信这应该适用于 C++ 和 Java API。

您需要实现自己的 LogFactoryLog 类(前者负责创建后者的实例)。 然后,您将自定义 LogFactory 的实例传递给您的 InitiatorAcceptor 实例。 您将在 Log 类中进行消息过滤。

了解 Log 接收字符串形式的消息,因此您需要过滤使用字符串匹配操作或将字符串转换回 Messages 然后使用标签进行过滤,尽管这最终可能会减慢您的速度,而不仅仅是允许记录所有消息。

You don't say which language you're using but I believe that this should work with both the C++ and Java APIs.

You will need to implement your own LogFactory and Log classes (the former is responsible for creating instances of the latter). Then you'll pass an instance of your custom LogFactory to your Initiator or Acceptor instance. Your Log class is where you will do the message filtering.

Understand that Log receives messages in string form, so you'll need to filtering either with string matching operations or convert the strings back to Messages and then filter using tags, though this may end up slowing you down more than just allowing all messages to be logger.

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