Changeset

2289:8938265695c9

mod_compression: Removing forgotten debugging output.
author Tobias Markmann <tm@ayena.de>
date Tue, 01 Dec 2009 00:21:32 +0100
parents 2288:3c17fc919f7b
children 2290:ef7027a0f0c9 2313:d76e8d7b7f5d
files plugins/mod_compression.lua
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_compression.lua	Tue Dec 01 00:10:47 2009 +0100
+++ b/plugins/mod_compression.lua	Tue Dec 01 00:21:32 2009 +0100
@@ -39,7 +39,6 @@
 			local session, features = data.session, data.features;
 			-- FIXME only advertise compression support when TLS layer has no compression enabled
 			if not session.compressed then 
-				module:log("debug", "s2s-stream-features YAY YAHOO")
 				features:add_child(compression_stream_feature);
 			end
 		end
@@ -49,7 +48,6 @@
 module:hook_stanza(xmlns_stream, "features",
 		function (session, stanza)
 			if not session.compressed then
-				module:log("debug", "FEATURES: "..stanza:pretty_print())
 				-- does remote server support compression?
 				local comp_st = stanza:child_with_name("compression");
 				if comp_st then