core.s2smanager: Rewrite log line to use formatting instead of concatenation

Makes it more in line with logging elsewhere. Potentially avoids or at
least delays creation of new string.
This commit is contained in:
Kim Alvefur 2019-07-30 02:14:50 +02:00
parent cc653ef0d9
commit 7bce7c9fbe

View file

@ -9,8 +9,7 @@
local hosts = prosody.hosts;
local tostring, pairs, setmetatable
= tostring, pairs, setmetatable;
local pairs, setmetatable = pairs, setmetatable;
local logger_init = require "util.logger".init;
local sessionlib = require "util.session";
@ -84,9 +83,8 @@ end
local function destroy_session(session, reason)
if session.destroyed then return; end
(session.log or log)("debug", "Destroying "..tostring(session.direction)
.." session "..tostring(session.from_host).."->"..tostring(session.to_host)
..(reason and (": "..reason) or ""));
local log = session.log or log;
log("debug", "Destroying %s session %s->%s%s%s", session.direction, session.from_host, session.to_host, reason and ": " or "", reason or "");
if session.direction == "outgoing" then
hosts[session.from_host].s2sout[session.to_host] = nil;