mod_s2s: Lower log message to 'warn' level, standard for remotely-triggered protocol issues

This commit is contained in:
Matthew Wild 2016-09-27 22:01:46 +01:00
parent 9543307b58
commit 4c0ea8780e

View file

@ -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