->Log4Net是一个可以帮助程序员把日志信息输出到各种 不同目标的.Net类库
首先在项目中添加NuGet包:
然后在NuGet窗体中搜索Log4Net,然后点击安装<安装过程可能会持续几分钟,请耐心等待>
配置文件App.Config或者Web.Config
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<!--Log4Net块配置-->
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>
<!--log4net配置-->
<log4net>
<!--定义日志载入器-->
<logger name="logerror">
<level value="DEBUG" />
<!--关联日志追加者:ErrorAppender-->
<appender