@@ -121,6 +121,11 @@ abstract class PaySuccessAbstract
// 同步数据
$this->order->distribution_channel_id = getProp($quickSendOrder, 'distribution_channel_id');
- ReportService::reportRecharge($this->order);
+ try {
+ ReportService::reportRecharge($this->order);
+ }catch (Exception $exception){
+ Log::error('pay.success-addQueue-err: 同步数据异常' . $exception->getMessage() . ' ' . $exception->getTraceAsString());
+ }
+
}