diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-03-18 01:27:31 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-03-18 01:27:31 +0000 |
commit | 0d6100844b07daef86571021aa8d3492e4da45ee (patch) | |
tree | 45c16a4d2f5af162ac863cc8924c27dc80b438d7 /plugins/mod_compression.lua | |
parent | e99e23509b0b20f49bc1d0763947514bb6f5d4d7 (diff) | |
parent | 2283fae9c1b85932f6386e8eb421a3c6a319aa84 (diff) | |
download | prosody-0d6100844b07daef86571021aa8d3492e4da45ee.tar.gz prosody-0d6100844b07daef86571021aa8d3492e4da45ee.zip |
Merge 0.7->trunk
Diffstat (limited to 'plugins/mod_compression.lua')
-rw-r--r-- | plugins/mod_compression.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mod_compression.lua b/plugins/mod_compression.lua index 3ef5a1f3..c2e84f2b 100644 --- a/plugins/mod_compression.lua +++ b/plugins/mod_compression.lua @@ -170,7 +170,7 @@ module:add_handler({"c2s_unauthed", "c2s", "s2sin_unauthed", "s2sin"}, "compress if session.compressed then local error_st = st.stanza("failure", {xmlns=xmlns_compression_protocol}):tag("setup-failed"); (session.sends2s or session.send)(error_st); - session.log("warn", "Tried to establish another compression layer."); + session.log("debug", "Client tried to establish another compression layer."); return; end @@ -178,7 +178,7 @@ module:add_handler({"c2s_unauthed", "c2s", "s2sin_unauthed", "s2sin"}, "compress local method = stanza:child_with_name("method"); method = method and (method[1] or ""); if method == "zlib" then - session.log("debug", "%s compression selected.", tostring(method)); + session.log("debug", "zlib compression enabled."); -- create deflate and inflate streams local deflate_stream = get_deflate_stream(session); @@ -204,7 +204,7 @@ module:add_handler({"c2s_unauthed", "c2s", "s2sin_unauthed", "s2sin"}, "compress end; session.compressed = true; elseif method then - session.log("info", "%s compression selected, but we don't support it.", tostring(method)); + session.log("debug", "%s compression selected, but we don't support it.", tostring(method)); local error_st = st.stanza("failure", {xmlns=xmlns_compression_protocol}):tag("unsupported-method"); (session.sends2s or session.send)(error_st); else |