停止跟踪“ ServiceBusProcessor.processmessage”申请见解的活动

发布于 2025-02-07 19:33:50 字数 249 浏览 3 评论 0原文

你好

我需要停止在AI

正如我从AI文档中理解的 - 它是关于从Azure Service Bus成功处理的消息的日志。

该日志记录对我没有任何价值,

感谢您的帮助!

Hello

I need to stop tracking this activity in AI

AI logs

As I understood from AI documentation - it's log about successfully processed message from Azure service bus.

This log records has no value for me

Thank for help!

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

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

发布评论

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

评论(1

鲜血染红嫁衣 2025-02-14 19:33:50

在ASP.NET应用程序中,根据活动日志级别的配置,由服务总线客户端库发出的ETW日志转发到ilogger。如果您想将服务总线调整为与全球值不同的东西,则可以将特定级别设置为记录配置的一部分。

例如,以下设置仅用于警告和错误捕获的服务总线日志,而其他Azure SDK日志仅设置为错误:有关

"Logging": {
  "LogLevel": {
    "Default": "Information",
    "System": "Information",
    "Microsoft": "Warning",
    "Azure.Core": "Error",
    "Azure.Messaging.ServiceBus": "Warning"
  }
}

Azure SDK日志记录配置映射的更多信息可以在文章中找到函数。 使用.net 。

In an ASP.NET application, the ETW logs emitted by the Service Bus client library are forwarded to ILogger based on the active log level configuration. If you'd like to tune Service Bus to something different than the global value, you can set a specific level as part of logging configuration.

For example, the following sets the Service Bus logs to be captured only for warnings and errors while the other Azure SDK logs are set for error only:

"Logging": {
  "LogLevel": {
    "Default": "Information",
    "System": "Information",
    "Microsoft": "Warning",
    "Azure.Core": "Error",
    "Azure.Messaging.ServiceBus": "Warning"
  }
}

More information on how the Azure SDK logging configuration maps to the Functions logging can be found in the article Logging with the Azure SDK for .NET.

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