Changeset

6471:95d93c4f9d40

mod_s2s: Capitalize log message
author Kim Alvefur <zash@zash.se>
date Fri, 10 Oct 2014 00:56:53 +0200
parents 6467:77d00a895bbd
children 6472:acae6289e0a6
files plugins/mod_s2s/mod_s2s.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_s2s/mod_s2s.lua	Tue Oct 07 12:08:23 2014 -0400
+++ b/plugins/mod_s2s/mod_s2s.lua	Fri Oct 10 00:56:53 2014 +0200
@@ -49,7 +49,7 @@
 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)