【优化】微信建立支付请求失败增加后台日志处理,方便后台查询构建支付失败的原因。

This commit is contained in:
大灰灰
2023-01-04 02:58:47 +08:00
parent 8162967b74
commit b6890d50f0

View File

@@ -15,6 +15,7 @@ using CoreCms.Net.Auth.HttpContextUser;
using CoreCms.Net.Caching.AccressToken; using CoreCms.Net.Caching.AccressToken;
using CoreCms.Net.Configuration; using CoreCms.Net.Configuration;
using CoreCms.Net.IServices; using CoreCms.Net.IServices;
using CoreCms.Net.Loging;
using CoreCms.Net.Model.Entities; using CoreCms.Net.Model.Entities;
using CoreCms.Net.Model.ViewModels.UI; using CoreCms.Net.Model.ViewModels.UI;
using CoreCms.Net.Utility.Extensions; using CoreCms.Net.Utility.Extensions;
@@ -250,6 +251,7 @@ namespace CoreCms.Net.Services
jm.status = false; jm.status = false;
jm.msg = "微信建立支付请求失败"; jm.msg = "微信建立支付请求失败";
//jm.otherData = response; //jm.otherData = response;
NLogUtil.WriteAll(NLog.LogLevel.Error, LogType.Web, "微信支付失败", JsonConvert.SerializeObject(response));
} }
return jm; return jm;
} }