This commit is contained in:
mhsanaei
2024-07-18 23:03:48 +02:00
parent 011443bfc1
commit 24b367b82f
4 changed files with 5 additions and 5 deletions

View File

@@ -300,7 +300,7 @@ func (j *CheckClientIpJob) updateInboundClientIps(inboundClientIps *model.Inboun
if limitIp < len(ips) {
j.disAllowedIps = append(j.disAllowedIps, ips[limitIp:]...)
for i := limitIp; i < len(ips); i++ {
logger.Debugf("[LIMIT_IP] Email = %s || SRC = %s", clientEmail, ips[i])
log.Printf("[LIMIT_IP] Email = %s || SRC = %s", clientEmail, ips[i])
}
}
}