|
@@ -33,7 +33,7 @@ export class OpenApiWebhookService extends BaseService {
|
|
|
async easypayWebhook(params, type: string) {
|
|
|
try {
|
|
|
this.logger.info(
|
|
|
- `easypay的webhook_${type}: params${params}`
|
|
|
+ `easypay的webhook_${type}: params${JSON.stringify(params)}`
|
|
|
);
|
|
|
// TODO 各类回调处理 后续处理
|
|
|
// 账户审核通过 account_approved
|
|
@@ -58,7 +58,7 @@ export class OpenApiWebhookService extends BaseService {
|
|
|
// 转账失败 transfer_failed
|
|
|
} catch (err) {
|
|
|
this.logger.error(
|
|
|
- `easypay的webhook error ${type}: params${params}`
|
|
|
+ `easypay的webhook error ${type}: params${JSON.stringify(params)}`
|
|
|
);
|
|
|
}
|
|
|
this.ctx.status = 200;
|