diff options
author | Matthew Wild <mwild1@gmail.com> | 2016-09-27 22:01:46 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2016-09-27 22:01:46 +0100 |
commit | 49cdb79dd1b4f504c9e6540704c4802af7920c98 (patch) | |
tree | ebd777c4a9cee013dff2ca0dc16610d01a7e7ef3 | |
parent | e6f146db20466412e73a378b92d099ca3993405e (diff) | |
download | prosody-49cdb79dd1b4f504c9e6540704c4802af7920c98.tar.gz prosody-49cdb79dd1b4f504c9e6540704c4802af7920c98.zip |
mod_s2s: Lower log message to 'warn' level, standard for remotely-triggered protocol issuesvault/0.9.11
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 2 |
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 |