core/s2smanager.lua
changeset 7950 24170d74b00b
parent 6782 6236668da30a
child 7953 f91e7ec9654e
--- a/core/s2smanager.lua	Fri Mar 03 11:51:32 2017 +0100
+++ b/core/s2smanager.lua	Sat Mar 04 17:49:48 2017 +0100
@@ -70,7 +70,9 @@
 
 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 ""));
+	(session.log or log)("debug", "Destroying "..tostring(session.direction)
+		.." session "..tostring(session.from_host).."->"..tostring(session.to_host)
+		..(reason and (": "..reason) or ""));
 
 	if session.direction == "outgoing" then
 		hosts[session.from_host].s2sout[session.to_host] = nil;