node: Log IP ban rejections

This commit is contained in:
cloudhead 2024-06-19 20:38:23 +02:00
parent 0a7a9c2945
commit 6598e77456
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -1281,6 +1281,7 @@ where
match self.db.addresses().is_ip_banned(ip) {
Ok(banned) => {
if banned {
debug!(target: "service", "Rejecting inbound connection from banned ip {ip}");
return false;
}
}