#region Apache License Version 2.0
/*----------------------------------------------------------------
Copyright 2019 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language governing permissions
and limitations under the License.
Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md
----------------------------------------------------------------*/
#endregion Apache License Version 2.0
/*----------------------------------------------------------------
Copyright (C) 2019 Senparc
文件名:WeixinTrace.cs
文件功能描述:跟踪日志相关
创建标识:Senparc - 20151012
修改标识:Senparc - 20161225
修改描述:v4.9.7 1、使用同步锁
2、修改日志储存路径,新路径为/App_Data/WeixinTraceLog/SenparcWeixinTrace-yyyyMMdd.log
3、添加WeixinExceptionLog方法
修改标识:Senparc - 20161231
修改描述:v4.9.8 将SendLog方法改名为SendApiLog,添加SendCustomLog方法
修改标识:Senparc - 20170101
修改描述:v4.9.9 1、优化日志记录方法(围绕OnWeixinExceptionFunc为主)
2、输出AccessTokenOrAppId
修改标识:Senparc - 20170304
修改描述:Senparc.Wexin v4.11.3 日志中添加对线程的记录
修改标识:Senparc - 20181118
修改描述:v16.5.0 使用 CO2NET v0.3.0 新的 SenparcTrace 记录方法
----------------------------------------------------------------*/
using System;
using System.Diagnostics;
using System.IO;
using Senparc.Weixin.Cache;
using Senparc.Weixin.Exceptions;
using System.Threading;
using Senparc.CO2NET.Trace;
using Senparc.CO2NET.Extensions;
namespace Senparc.Weixin
{
//TODO:将WeixinTrace和SenparcTrace通过某种标记明显区分开来
///
/// 微信日志跟踪
///
public class WeixinTrace : SenparcTrace
{
///
/// 记录WeixinException日志时需要执行的任务
///
public static Action OnWeixinExceptionFunc;
///
/// 记录系统日志
///
///
///
public static void Log(string messageFormat, params object[] param)
{
SenparcTrace.Log(messageFormat.FormatWith(param));
}
#region WeixinException 相关日志
///
/// WeixinException 日志
///
///
public static void WeixinExceptionLog(WeixinException ex)
{
if (!Config.IsDebug)
{
return;
}
using (var traceItem = new SenparcTraceItem(SenparcTrace._logEndActon, "WeixinException"))
{
traceItem.Log(ex.GetType().Name);
traceItem.Log("AccessTokenOrAppId:{0}", ex.AccessTokenOrAppId);
traceItem.Log("Message:{0}", ex.Message);
traceItem.Log("StackTrace:{0}", ex.StackTrace);
if (ex.InnerException != null)
{
traceItem.Log("InnerException:{0}", ex.InnerException.Message);
traceItem.Log("InnerException.StackTrace:{0}", ex.InnerException.StackTrace);
}
}
if (OnWeixinExceptionFunc != null)
{
try
{
OnWeixinExceptionFunc(ex);
}
catch
{
}
}
}
///
/// ErrorJsonResultException 日志
///
///
public static void ErrorJsonResultExceptionLog(ErrorJsonResultException ex)
{
if (!Config.IsDebug)
{
return;
}
using (var traceItem = new SenparcTraceItem(SenparcTrace._logEndActon, "ErrorJsonResultException"))
{
traceItem.Log("ErrorJsonResultException");
traceItem.Log("AccessTokenOrAppId:{0}", ex.AccessTokenOrAppId ?? "null");
traceItem.Log("URL:{0}", ex.Url);
traceItem.Log("errcode:{0}", ex.JsonResult.errcode);
traceItem.Log("errmsg:{0}", ex.JsonResult.errmsg);
}
if (OnWeixinExceptionFunc != null)
{
try
{
OnWeixinExceptionFunc(ex);
}
catch
{
}
}
}
#endregion
}
}