diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-01-16 05:38:03 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-01-16 05:38:03 +0000 |
commit | 8d1005cf4ef5e0fdc661df9b4ef8d49a59ab16bc (patch) | |
tree | ab89dc441817b52ea0e4cf54d2ac9e8424d9feaa /core/modulemanager.lua | |
parent | fdebec4d23cd2e4c029c0ab33add6c1089f4652a (diff) | |
download | prosody-8d1005cf4ef5e0fdc661df9b4ef8d49a59ab16bc.tar.gz prosody-8d1005cf4ef5e0fdc661df9b4ef8d49a59ab16bc.zip |
modulemanager: Comment out logging of modules hooking stanzas, too noisy
Diffstat (limited to 'core/modulemanager.lua')
-rw-r--r-- | core/modulemanager.lua | 2 |
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 |