更新极光推送调试

This commit is contained in:
yaooo 2023-09-27 11:52:36 +08:00
parent 6fdd1f9c41
commit a0019ef673

View File

@ -35,10 +35,10 @@ class SendSmsJob implements JobInterface
try {
/** @var JgPush $client */
$client = app()->make(JgPush::class);
Log::info('JgPush送发送数据' . var_export($data, 1));
Log::info('JgPush送发送数据' . json_encode($data));
$client->send($data['tempId'], $data);
} catch (\Exception $e) {
Log::info('JgPush推送消息发送失败' . var_export($data, 1) . $e->getMessage());
Log::info('JgPush推送消息发送失败' . json_encode($data) . ' - ' . $e->getMessage());
DingTalk::exception($e, 'JgPush推送消息发送失败' . var_export($data, 1));
}
}