Little tweak for more useful logging of closed s2s sessions

This commit is contained in:
Matthew Wild 2008-10-26 13:14:14 +00:00
parent 77dcd4c0c5
commit 08940b2308

View file

@ -175,7 +175,7 @@ function mark_connected(session)
end
function destroy_session(session)
(session.log or log)("info", "Destroying session");
(session.log or log)("info", "Destroying "..tostring(session.direction).." session "..tostring(session.from_host).."->"..tostring(session.to_host));
if session.direction == "outgoing" then
hosts[session.to_host] = nil;
end