如何在asp.net中使用Log4net记录客户端Ip,浏览器名和用户名
本文关键字:Ip 客户端 浏览器 记录 用户 Log4net asp net | 更新日期: 2023-09-27 18:08:30
我想使用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;
网络。配置设置:
<conversionPattern value="%date %property{Hostname, username, Browser} [%thread]
 %-5level %logger - %message%newline"
/>
如果需要其他设置,请告诉我。
给你一个更"优雅"的解决方案:使用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.
}
可以这样做,这对其他人很有用。
<conversionPattern value="%date [%property{Hostname}] [%property{UserName}] [%property{Browser}] [%property{WindowsLogin}] [%thread]
 %-5level %logger - %message%newline"
/>