mod_s2s: Capitalize log message
authorKim Alvefur <zash@zash.se>
Thu, 9 Oct 2014 22:56:53 +0000 (00:56 +0200)
committerKim Alvefur <zash@zash.se>
Thu, 9 Oct 2014 22:56:53 +0000 (00:56 +0200)
plugins/mod_s2s/mod_s2s.lua

index ee03987de0254c5ac2767df1319c9475852ffb32..d8846a6f66d591b409176ea8666f0f0d849161d3 100644 (file)
@@ -49,7 +49,7 @@ local bouncy_stanzas = { message = true, presence = true, iq = true };
 local function bounce_sendq(session, reason)
        local sendq = session.sendq;
        if not sendq then return; end
-       session.log("info", "sending error replies for "..#sendq.." queued stanzas because of failed outgoing connection to "..tostring(session.to_host));
+       session.log("info", "Sending error replies for "..#sendq.." queued stanzas because of failed outgoing connection to "..tostring(session.to_host));
        local dummy = {
                type = "s2sin";
                send = function(s)