mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_blocklist: Capitalize log message
This commit is contained in:
parent
edc34e6635
commit
edbbf7e07e
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ end);
|
|||
-- Buggy clients
|
||||
module:hook("iq-error/self/blocklist-push", function (event)
|
||||
local type, condition, text = event.stanza:get_error();
|
||||
(event.origin.log or module._log)("warn", "client returned an error in response to notification from mod_%s: %s%s%s", module.name, condition, text and ": " or "", text or "");
|
||||
(event.origin.log or module._log)("warn", "Client returned an error in response to notification from mod_%s: %s%s%s", module.name, condition, text and ": " or "", text or "");
|
||||
return true;
|
||||
end);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue