mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
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:
parent
cc653ef0d9
commit
7bce7c9fbe
1 changed files with 3 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue