Log4NEt 配置

一:引入Log4NET.dll

二:在AssemblyInfo.Cs中加入[assembly: log4net.Config.XmlConfigurator(Watch = true)]

       Log4NEt 配置_第1张图片  

三:在配置文档里面配置一下,比如控制台的APP.config

四: log4net.GlobalContext.Properties["LogDir"] = currentTime.ToString("yyyyMM");
         log4net.GlobalContext.Properties["LogFileName"] = "_SocketAsyncServer" + currentTime.ToString("yyyyMMdd");
         Logger = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);

你可能感兴趣的:(Log4NEt 配置)