aboutsummaryrefslogtreecommitdiffstats
path: root/core/s2smanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-01-24 00:58:17 +0100
committerKim Alvefur <zash@zash.se>2013-01-24 00:58:17 +0100
commit4517552d8ba7d8c57794e2c74c7d73c64cbeb960 (patch)
treeec65141decae5fb7d07319b76bce3ba9b0ddf6c4 /core/s2smanager.lua
parent40709658994b6603968042c9dfebff7363f6ea71 (diff)
downloadprosody-4517552d8ba7d8c57794e2c74c7d73c64cbeb960.tar.gz
prosody-4517552d8ba7d8c57794e2c74c7d73c64cbeb960.zip
s2smanager: Generate session names used for logging the same way everywhere
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r--core/s2smanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua
index 4c018713..6049e12e 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -35,7 +35,7 @@ function new_incoming(conn)
getmetatable(session.trace).__gc = function () open_sessions = open_sessions - 1; end;
end
open_sessions = open_sessions + 1;
- session.log = logger_init("s2sin"..tostring(conn):match("[a-f0-9]+$"));
+ session.log = logger_init("s2sin"..tostring(session):match("[a-f0-9]+$"));
incoming_s2s[session] = true;
return session;
end