aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-01-16 05:38:03 +0000
committerMatthew Wild <mwild1@gmail.com>2009-01-16 05:38:03 +0000
commit8d1005cf4ef5e0fdc661df9b4ef8d49a59ab16bc (patch)
treeab89dc441817b52ea0e4cf54d2ac9e8424d9feaa /core
parentfdebec4d23cd2e4c029c0ab33add6c1089f4652a (diff)
downloadprosody-8d1005cf4ef5e0fdc661df9b4ef8d49a59ab16bc.tar.gz
prosody-8d1005cf4ef5e0fdc661df9b4ef8d49a59ab16bc.zip
modulemanager: Comment out logging of modules hooking stanzas, too noisy
Diffstat (limited to 'core')
-rw-r--r--core/modulemanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua
index d8914ccc..e783e9b4 100644
--- a/core/modulemanager.lua
+++ b/core/modulemanager.lua
@@ -234,7 +234,7 @@ local function _add_handler(module, origin_type, tag, xmlns, handler)
stanza_handlers:add(module.host, origin_type, tag, xmlns, handler);
handler_info[handler] = module;
handler_table:add(module.host, module.name, {module.host, origin_type, tag, xmlns});
- module:log("debug", "I now handle tag '%s' [%s] with %s '%s'", tag, origin_type, msg, xmlns);
+ --module:log("debug", "I now handle tag '%s' [%s] with %s '%s'", tag, origin_type, msg, xmlns);
else
module:log("warn", "I wanted to handle tag '%s' [%s] with %s '%s' but mod_%s already handles that", tag, origin_type, msg, xmlns, handler_info[handlers[1]].module.name);
end