aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2016-09-27 22:01:46 +0100
committerMatthew Wild <mwild1@gmail.com>2016-09-27 22:01:46 +0100
commit4b7a301b7eb85b632273f4308f10d1e1b7d95c76 (patch)
treeebd777c4a9cee013dff2ca0dc16610d01a7e7ef3 /plugins
parent895ee4a82812e11bf9195e4704456480d13a58ce (diff)
downloadprosody-4b7a301b7eb85b632273f4308f10d1e1b7d95c76.tar.gz
prosody-4b7a301b7eb85b632273f4308f10d1e1b7d95c76.zip
mod_s2s: Lower log message to 'warn' level, standard for remotely-triggered protocol issues
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_s2s/mod_s2s.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua
index 4173fcfa..e038e5b4 100644
--- a/plugins/mod_s2s/mod_s2s.lua
+++ b/plugins/mod_s2s/mod_s2s.lua
@@ -365,7 +365,7 @@ function stream_callbacks.streamopened(session, attr)
elseif session.direction == "outgoing" then
session.notopen = nil;
if not attr.id then
- log("error", "Stream response did not give us a stream id!");
+ log("warn", "Stream response did not give us a stream id!");
session:close({ condition = "undefined-condition", text = "Missing stream ID" });
return;
end