|
@@ -270,6 +270,8 @@ class OrderService
|
|
|
$result = json_decode(json_encode($result), true);
|
|
|
}
|
|
|
} catch (\Exception $e) {
|
|
|
+ dump($e->getMessage());
|
|
|
+ SupportLog::channel('pay')->error("WXPAY", ['msg' => $e->getMessage()]);
|
|
|
throw new BusinessException("订单查询失败");
|
|
|
}
|
|
|
|
|
@@ -303,6 +305,8 @@ class OrderService
|
|
|
$result = json_decode(json_encode($result), true);
|
|
|
}
|
|
|
} catch (\Exception $e) {
|
|
|
+ dump($e->getMessage());
|
|
|
+ SupportLog::channel('pay')->error("ALIPAY", ['msg' => $e->getMessage()]);
|
|
|
throw new BusinessException("订单查询失败");
|
|
|
}
|
|
|
|