我使用 Log4net 创建了一个简单的场景,但似乎我的日志附加程序不起作用,因为消息没有添加到日志文件中。
我在 web.config 文件中添加了以下内容:
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" requirePermission="false"/>
</configSections>
<log4net>
<appender name="LogFileAppender" type="log4net.Appender.FileAppender">
<file value="D:\MyData\Desktop\LogFile.txt" />
<appendToFile value="true" />
<encoding value="utf-8" />
<layout type="log4net.Layout.SimpleLayout" />
</appender>
<root>
<level value="INFO" />
<appender-ref ref="LogFileAppender" />
</root>
</log4net>
在我添加的全局 ASAX 文件中:
ILog logger = LogManager.GetLogger(typeof(MvcApplication));
在 Application_Start 方法中:
logger.Info("Starting the application...");
为什么没有将测试日志“正在启动应用程序...”添加到日志文件中?