From 287cd9d2ffbacfedd782b00e278f60cdd450fa04 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Tue, 25 Jun 2024 11:50:54 +0800 Subject: [PATCH] =?UTF-8?q?feat(PushService):=20=E6=97=A5=E5=BF=97?= =?UTF-8?q?=E8=AE=B0=E5=BD=95PushService::push=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/service/PushService.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/common/service/PushService.php b/app/common/service/PushService.php index 83b42a190..1dc695b6a 100644 --- a/app/common/service/PushService.php +++ b/app/common/service/PushService.php @@ -2,6 +2,7 @@ namespace app\common\service; +use support\Log; use Webman\Push\Api; class PushService @@ -15,6 +16,7 @@ class PushService */ public static function push($subscription, $uid, $content) { + Log::info('PushService::push', [$subscription, $uid, $content]); $api = new Api( getenv('PUSH_URL'), config('plugin.webman.push.app.app_key'),