Changeset

2676:4516888fc42d

s2smanager: Use s2smanager log() if session doesn't have a logger (thanks Flo)
author Matthew Wild <mwild1@gmail.com>
date Fri, 19 Feb 2010 03:30:27 +0000
parents 2675:ab643a77da2d
children 2677:467568f1117d 2681:b8d3b185b676
files core/s2smanager.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/core/s2smanager.lua	Fri Feb 19 03:27:18 2010 +0000
+++ b/core/s2smanager.lua	Fri Feb 19 03:30:27 2010 +0000
@@ -301,7 +301,7 @@
 end
 
 function make_connect(host_session, connect_host, connect_port)
-	host_session.log("info", "Beginning new connection attempt to %s (%s:%d)", host_session.to_host, connect_host, connect_port);
+	(host_session.log or log)("info", "Beginning new connection attempt to %s (%s:%d)", host_session.to_host, connect_host, connect_port);
 	-- Ok, we're going to try to connect
 	
 	local from_host, to_host = host_session.from_host, host_session.to_host;