# HG changeset patch # User Kim Alvefur # Date 1376484830 -7200 # Node ID 3a48acbcb7f330da9ec1ca831e5633ea1615502b # Parent 4a7e90b4c97d0750950c2d5b63219004e57e1f90 mod_s2s: Captitalize log messages that begin with a stream direction diff -r 4a7e90b4c97d -r 3a48acbcb7f3 plugins/mod_s2s/mod_s2s.lua --- a/plugins/mod_s2s/mod_s2s.lua Wed Aug 14 14:44:56 2013 +0200 +++ b/plugins/mod_s2s/mod_s2s.lua Wed Aug 14 14:53:50 2013 +0200 @@ -158,7 +158,7 @@ local from, to = session.from_host, session.to_host; - session.log("info", "%s s2s connection %s->%s complete", session.direction, from, to); + session.log("info", "%s s2s connection %s->%s complete", session.direction:gsub("^.", string.upper), from, to); local event_data = { session = session }; if session.type == "s2sout" then @@ -491,7 +491,7 @@ function session.sends2s() return false; end local reason = remote_reason or (reason and (reason.text or reason.condition)) or reason; - session.log("info", "%s s2s stream %s->%s closed: %s", session.direction, session.from_host or "(unknown host)", session.to_host or "(unknown host)", reason or "stream closed"); + session.log("info", "%s s2s stream %s->%s closed: %s", session.direction:gsub("^.", string.upper), session.from_host or "(unknown host)", session.to_host or "(unknown host)", reason or "stream closed"); -- Authenticated incoming stream may still be sending us stanzas, so wait for from remote local conn = session.conn;