From 37d8459609ec39f7a7fd5aaaa7a3d804c3197559 Mon Sep 17 00:00:00 2001 From: zhenhui <1276357500@qq.com> Date: Thu, 28 May 2026 16:02:11 +0800 Subject: [PATCH] =?UTF-8?q?1.=E4=BC=98=E5=8C=96websocket=E4=B8=AD=E7=9A=84?= =?UTF-8?q?jackpot.hit?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/service/GameBetSettleService.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/common/service/GameBetSettleService.php b/app/common/service/GameBetSettleService.php index abf28f1..79fdc0d 100644 --- a/app/common/service/GameBetSettleService.php +++ b/app/common/service/GameBetSettleService.php @@ -447,6 +447,12 @@ final class GameBetSettleService try { $already = Redis::get($dedupKey); if ($already !== false && $already !== null && $already !== '') { + Log::channel('ws')->info('jackpot.hit skipped (dedup exists)', [ + 'period_id' => $periodId, + 'period_no' => $periodNo, + 'result_number' => $resultNumber, + 'hit_count' => count($jackpotHits), + ]); return; } } catch (Throwable) {