From 465809fbe8d3b72db02d3eeebcef7eb8994fc5b0 Mon Sep 17 00:00:00 2001 From: Ghost_chu Date: Fri, 3 Jan 2025 03:34:54 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=94=99=E8=AF=AF=E7=9A=84?= =?UTF-8?q?=20auditService?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ghostchu/btn/sparkle/module/ping/PingController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/ghostchu/btn/sparkle/module/ping/PingController.java b/src/main/java/com/ghostchu/btn/sparkle/module/ping/PingController.java index 5598b6d..d991647 100644 --- a/src/main/java/com/ghostchu/btn/sparkle/module/ping/PingController.java +++ b/src/main/java/com/ghostchu/btn/sparkle/module/ping/PingController.java @@ -126,7 +126,7 @@ public ResponseEntity submitBans(@RequestBody @Validated BtnBanPing ping // log.info("[OK] [Ping] [{}] 已提交 {} 个 封禁信息:(AppId={}, UA={})", // ip(req), handled, cred.getAppId(), ua(req)); audit.put("bans_size", ping.getBans().size()); - auditService.log(req, "BTN_PEERS_SUBMIT", true, audit); + auditService.log(req, "BTN_BANS_SUBMIT", true, audit); return ResponseEntity.status(200).build(); }