在MVC中 - 应用程序我需要写入IIS-Log。我这样做是通过从HttpResponse调用“AppendToLog()”:
public static void IIsLog(this HttpResponseBase response, string message, params object [] parameters)
{
if (response == null) return;
response.AppendToLog(string.Format(message, parameters));
}
现在我通常使用log4net来登录日志文件,因此最好使用与上面的自定义代码完全相同的appender。
我无法找到符合我需求的任何appender on the Apache-Documentation。
有没有适合我需要的追加者?