diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-04-30 02:45:10 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-04-30 02:45:10 +0100 |
commit | 18b7e2867c44c13cb21e849387fcca6dda62e2eb (patch) | |
tree | 8cb76aa9cd50d8c8b0951b52339b7a3ca3a6cf00 /core | |
parent | 8f3b27b822765c096a3ea5fca77d521a89e5e71d (diff) | |
download | prosody-18b7e2867c44c13cb21e849387fcca6dda62e2eb.tar.gz prosody-18b7e2867c44c13cb21e849387fcca6dda62e2eb.zip |
sessionmanager: Miscellaneous logging improvements, changing levels, improving messages and using session loggers where possible
Diffstat (limited to 'core')
-rw-r--r-- | core/sessionmanager.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/core/sessionmanager.lua b/core/sessionmanager.lua index 52e418cc..68493d87 100644 --- a/core/sessionmanager.lua +++ b/core/sessionmanager.lua @@ -45,7 +45,7 @@ function new_session(conn) 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 @@ function new_session(conn) 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 @@ function make_authenticated(session, username) 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 @@ function streamopened(session, attr) 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 |