diff --git a/WMS-BS/NFine.Data/Extensions/HTTPHelper.cs b/WMS-BS/NFine.Data/Extensions/HTTPHelper.cs index 38e648b..85874c3 100644 --- a/WMS-BS/NFine.Data/Extensions/HTTPHelper.cs +++ b/WMS-BS/NFine.Data/Extensions/HTTPHelper.cs @@ -11,7 +11,7 @@ namespace NFine.Data.Extensions { public class HTTPHelper { - private static log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); + //private static log4net.ILog log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); public static string HttpPost(string apiName, string url, string body) { @@ -35,7 +35,7 @@ namespace NFine.Data.Extensions } catch (System.Net.WebException ex) { - log.Error(ex.ToString() + Environment.NewLine + url + Environment.NewLine + body); + //log.Error(ex.ToString() + Environment.NewLine + url + Environment.NewLine + body); throw new Exception(apiName + "调用失败," + ex.Message); } }