我已经对我的Web.Config进行了更改
我正在使用.net 4.0
我正在使用log4net我添加了参考
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net"/>
</configSections>
<log4net debug="true">
<appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender">
<file value="C:\Users\n.gupta\Desktop\CacheService.log"/>
<appenToFile value="true" />
<rollingStyle value="Size"/>
<maxsixeRollBackups value="10"/>
<maximumFileSize value="10Mb"/>
<staticLogFileName value="true"/>
<layout type="log4net.PatternLayout">
<conversionPattern value="%-5p %d %5rms %-22.22c{1} %-18.18M - %m%n"/>
</layout>
</appender>
<root>
<level value="DEBUG"/>
<appender-ref ref="RollingLogFileAppender" />
</root>
</log4net>
我在AssemblyInfo.cs中进行了更改
[assembly:log4net.Config.XmlConfigurator(ConfigFile="Web.config",Watch=true)]
我已将调试添加到我的控制器
我有一个货运控制器,其中包含我正在记录的创建方法
public class ShipmentController : BaseController
{
private static readonly ILog logger = ogManager.GetLogger(typeof(ShipmentController));
public ActionResult ShipmentCreation()
{
//I have attached the debug code for the message
logger.Debug("Hello I am in Shipment creation Method");
}
}
正在创建的文件,但它没有附加任何内容
答案 0 :(得分:1)
您的配置XML中至少有两个语法错误:
<appenToFile value="true" />
<rollingStyle value="Size"/>
<maxsixeRollBackups value="10"/>
appendToFile
和maxSize...
至少必须得到纠正。