mod_register_limits: Promote log message about inability to apply black/whitelists to a warning

This commit is contained in:
Kim Alvefur 2018-04-10 01:32:52 +02:00
parent 8b04ec15b0
commit 693a06e2f3

View file

@ -59,7 +59,7 @@ module:hook("user-registering", function (event)
local ip = event.ip or session and session.ip;
local log = session and session.log or module._log;
if not ip then
log("debug", "IP not known; can't apply blacklist/whitelist");
log("warn", "IP not known; can't apply blacklist/whitelist");
elseif ip_in_set(blacklisted_ips, ip) then
log("debug", "Registration disallowed by blacklist");
event.allowed = false;