我把发VS2010上的日志类移到VS2012上,发现记录不了日志,设置断点测试,按F11发现进入不了Log2File(string method) 这个方法。
前台调用:
SystemLog.Log2File(ex.TargetSite.ToString()).Error(ex.Message, ex);
日志帮助类:
public static ILog Log2File(string method)
{
log4net.Config.XmlConfigurator.ConfigureAndWatch(new System.IO.FileInfo(HttpContext.Current.Server.MapPath("Log2File.config")));
return log4net.LogManager.GetLogger(method);
}
暂时不管这个问题。可能是版本问题