gpt4 book ai didi

asp.net - 如何设置特定于 ASP.NET 请求的 log4net 上下文属性?

转载 作者:行者123 更新时间:2023-12-02 09:37:31 26 4
gpt4 key购买 nike

我一直在使用 log4net 来记录 ASP.NET 网站的日志消息,最近我想添加有关发生错误的页面/处理程序的信息。因此,我决定将以下行添加到 Global.asax:

void Application_BeginRequest(object sender, EventArgs e)
{
log4net.ThreadContext.Properties["page"] = HttpContext.Current.Request.AppRelativeCurrentExecutionFilePath;
}

同样,我将 %property{page} 添加到我的转化模式中:

<conversionPattern value="%newline%date %-5level %property{page} - %message%newline%newline%newline" />

这对于单个请求效果很好。但后来我在日志中注意到页面属性可能会在 ASP.NET 请求期间发生更改。我登录了一个 ASHX 处理程序,在处理过程中,页面属性将更改为指向 ASPX 页面的不同值。我得出的结论是,有另一个请求传入 ASP.NET,并且它的 BeginRequest 被执行,并且 log4net.ThreadContext 中的静态页面属性被更改为另一个值。

现在,我想维护每个请求的页面属性,以便我可以将执行页面的路径一致地记录到日志中。我试图寻找答案,但一无所获。解决这个问题的推荐方法是什么?我确信这是 Web 服务器事件日志记录的非常基本的功能。

最佳答案

自 ASP.NET does not guarantee整个页面请求将在同一个线程上处理,我更喜欢从 HttpContext.Current as log4net processes 获得答案日志记录事件。

下面的GetCurrentPage类实现了log4net手册中所说的"Active Property Value"通过重写其 ToString 方法:

public class GetCurrentPage
{
public override string ToString()
{
if (null != HttpContext.Current)
{
return HttpContext.Current.Request.AppRelativeCurrentExecutionFilePath;
}
return string.Empty; // or "[No Page]" if you prefer
}
}

在 log4net 的 GlobalContext 中的 Global.asax 的 Application_Start 中注册此类。

protected void Application_Start(object sender, EventArgs e)
{
XmlConfigurator.Configure();
GlobalContext.Properties["page"] = new GetCurrentPage();
}

当 log4net 写入该行的 %property{page} 部分时,它将调用 GetCurrentPage 类的 ToString 方法来查找当前请求中的值。

关于asp.net - 如何设置特定于 ASP.NET 请求的 log4net 上下文属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9702066/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com