Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
Jeepay
Commits
27c60d2a
Commit
27c60d2a
authored
Nov 09, 2021
by
terrfly
Browse files
微信退款异常添加日志信息
parent
607145ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
jeepay-payment/src/main/java/com/jeequan/jeepay/pay/channel/wxpay/WxpayRefundService.java
View file @
27c60d2a
...
...
@@ -123,11 +123,13 @@ public class WxpayRefundService extends AbstractRefundService {
}
return
channelRetMsg
;
}
catch
(
WxPayException
e
)
{
log
.
error
(
"微信退款WxPayException异常: "
,
e
);
ChannelRetMsg
channelRetMsg
=
ChannelRetMsg
.
confirmFail
();
WxpayKit
.
commonSetErrInfo
(
channelRetMsg
,
e
);
return
channelRetMsg
;
}
catch
(
Exception
e
)
{
log
.
error
(
"微信退款Exception异常: "
,
e
);
return
ChannelRetMsg
.
sysError
(
e
.
getMessage
());
}
}
...
...
@@ -177,8 +179,10 @@ public class WxpayRefundService extends AbstractRefundService {
}
return
channelRetMsg
;
}
catch
(
WxPayException
e
)
{
log
.
error
(
"微信退款查询WxPayException异常: "
,
e
);
return
ChannelRetMsg
.
sysError
(
e
.
getReturnMsg
());
}
catch
(
Exception
e
)
{
log
.
error
(
"微信退款查询Exception异常: "
,
e
);
return
ChannelRetMsg
.
sysError
(
e
.
getMessage
());
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment