Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/web/job
diff options
context:
space:
mode:
authormhsanaei <ho3ein.sanaei@gmail.com>2024-07-19 00:03:48 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2024-07-19 00:03:48 +0300
commit24b367b82fecfa6bd5a0427f4a204d56a7cca54a (patch)
treef5eabfb8406fe5eb2d1a03b9b08048b7ab370406 /web/job
parent011443bfc1370e8a6409e2f43c4a3593f9446128 (diff)
fix
Diffstat (limited to 'web/job')
-rw-r--r--web/job/check_client_ip_job.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/job/check_client_ip_job.go b/web/job/check_client_ip_job.go
index 8b7f81f1..e5e51c24 100644
--- a/web/job/check_client_ip_job.go
+++ b/web/job/check_client_ip_job.go
@@ -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])
}
}
}