如何使用asp.net中的Log4net记录客户端IP,浏览器名称和用户名?

时间:2014-06-12 10:21:08

标签: c# asp.net web-config log4net

我想使用log4net库记录客户端IP地址,浏览器名称和Windows身份验证用户名。

我正在尝试这种方式,但它不起作用。

所以请帮帮我。

主要问题是我不知道如何在log4net中添加多个自定义属性。

请帮帮我。

服务器端代码。

log4net.GlobalContext.Properties["Hostname"] = GetIP();
            log4net.GlobalContext.Properties["Browser"] =  HttpContext.Current.Request.Browser.Type;
            log4net.GlobalContext.Properties["username"] = HttpContext.Current.Request.LogonUserIdentity.Name;

Web.Config设置:

<conversionPattern value="%date %property{Hostname, username, Browser} [%thread]&#xD;&#xA;          %-5level %logger - %message%newline"
                                           />

如果需要任何其他设置,请告知我们。

或者还有其他方法可以做到这一点,请告诉我。

2 个答案:

答案 0 :(得分:1)

为此提供更优雅的解决方案:使用ndc。

<conversionPattern value="%-4timestamp [%thread] %-5level %logger %ndc - %message%newline" />

在代码(NDC)中使用嵌套诊断上下文

using(log4net.NDC.Push("["+GetIP() + " - " + HttpContext.Current.Request.Browser.Type + " - " + HttpContext.Current.Request.LogonUserIdentity.Name+"]")
{
    //your code
    //all log messages will contain the ndc string with the using.
}

答案 1 :(得分:0)

可以这样做,对其他人有用。

<conversionPattern value="%date [%property{Hostname}] [%property{UserName}] [%property{Browser}] [%property{WindowsLogin}] [%thread]&#xD;&#xA;          %-5level %logger - %message%newline"
                                           />