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'),