记得上下班打卡 | git大法好,push需谨慎

Commit 7138cd4b authored by 张国柄's avatar 张国柄

~log;

parent 53c38e4c
...@@ -82,12 +82,12 @@ public class SmsProcessor { ...@@ -82,12 +82,12 @@ public class SmsProcessor {
boolean isSucc = null != smsResponseBody && "OK".equalsIgnoreCase(smsResponseBody.getCode()); boolean isSucc = null != smsResponseBody && "OK".equalsIgnoreCase(smsResponseBody.getCode());
if (!isSucc) { if (!isSucc) {
log.warn("###发送短信API处理失败[{}]", JSON.toJSON(smsResponse)); log.warn("###发送短信API处理失败[pn={},sn={},tc={},tp={},respBody={}]", phoneNumber, signName, templateCode, templateParam, JSON.toJSON(smsResponseBody));
} }
return isSucc; return isSucc;
} catch (Exception e) { } catch (Exception e) {
log.error("发送短信API处理异常", e); log.error("发送短信API处理异常[pn={},sn={},tc={},tp={}]", phoneNumber, signName, templateCode, templateParam, e);
} }
return false; return false;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment