Skip to content

Commit

Permalink
修复错误的 auditService
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghost-chu committed Jan 2, 2025
1 parent dbe526f commit 465809f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public ResponseEntity<String> 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();
}

Expand Down

0 comments on commit 465809f

Please sign in to comment.