mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_compression: Tweak some log levels
This commit is contained in:
parent
034315b76d
commit
7ce19513ad
1 changed files with 2 additions and 2 deletions
|
@ -177,7 +177,7 @@ module:add_handler({"c2s_unauthed", "c2s", "s2sin_unauthed", "s2sin"}, "compress
|
|||
-- checking if the compression method is supported
|
||||
local method = stanza:child_with_name("method")[1];
|
||||
if method == "zlib" then
|
||||
session.log("info", method.." compression selected.");
|
||||
session.log("debug", method.." compression selected.");
|
||||
|
||||
-- create deflate and inflate streams
|
||||
local deflate_stream = get_deflate_stream(session);
|
||||
|
@ -203,7 +203,7 @@ module:add_handler({"c2s_unauthed", "c2s", "s2sin_unauthed", "s2sin"}, "compress
|
|||
end;
|
||||
session.compressed = true;
|
||||
else
|
||||
session.log("info", method.." compression selected. But we don't support it.");
|
||||
session.log("warn", method.." compression selected. But we don't support it.");
|
||||
local error_st = st.stanza("failure", {xmlns=xmlns_compression_protocol}):tag("unsupported-method");
|
||||
(session.sends2s or session.send)(error_st);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue