# HG changeset patch # User Kim Alvefur # Date 1412516179 -7200 # Node ID 6d3187f246085538dd99a6b80dc33a501c0fbc2a # Parent ba421af3dfd30069751bbbcc37f1eb574efbf890 mod_blocklist: Capitalize log message diff -r ba421af3dfd3 -r 6d3187f24608 plugins/mod_blocklist.lua --- a/plugins/mod_blocklist.lua Fri Oct 03 14:42:18 2014 +0200 +++ b/plugins/mod_blocklist.lua Sun Oct 05 15:36:19 2014 +0200 @@ -182,7 +182,7 @@ -- 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);