core/sessionmanager.lua

changeset 1076
ba3639692493
parent 970
5516f9e66482
child 1213
de66fa750daf
--- a/core/sessionmanager.lua	Thu Apr 30 02:43:12 2009 +0100
+++ b/core/sessionmanager.lua	Thu Apr 30 02:45:10 2009 +0100
@@ -45,7 +45,7 @@
 		getmetatable(session.trace).__gc = function () open_sessions = open_sessions - 1; end;
 	end
 	open_sessions = open_sessions + 1;
-	log("info", "open sessions now: ".. open_sessions);
+	log("debug", "open sessions now: ".. open_sessions);
 	local w = conn.write;
 	session.send = function (t) w(tostring(t)); end
 	session.ip = conn.ip();
@@ -53,7 +53,7 @@
 end
 
 function destroy_session(session, err)
-	(session.log or log)("info", "Destroying session");
+	(session.log or log)("info", "Destroying session for %s (%s@%s)", session.full_jid or "(unknown)", session.username or "(unknown)", session.host or "(unknown)");
 	
 	-- Send unavailable presence
 	if session.presence then
@@ -94,6 +94,7 @@
 	if session.type == "c2s_unauthed" then
 		session.type = "c2s";
 	end
+	session.log("info", "Authenticated as %s@%s", username or "(unknown)", session.host or "(unknown)");
 	return true;
 end
 
@@ -176,7 +177,7 @@
 	
 	send(features);
 	
-	(session.log or log)("info", "Sent reply <stream:stream> to client");
+	(session.log or log)("debug", "Sent reply <stream:stream> to client");
 	session.notopen = nil;
 end
 

mercurial