diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-03-23 14:05:55 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-03-23 14:05:55 +0000 |
commit | b0e35912875849cc5ae94433313ff2760af462ef (patch) | |
tree | 3deb82b8ac4f9898ab821678e36a3848f3e3a2db /plugins | |
parent | 5fc93602b25c38db9da6f5b363878c3a5f85500a (diff) | |
parent | 8fd6c07dacaaa295a8d61feb4a41945e17b96713 (diff) | |
download | prosody-b0e35912875849cc5ae94433313ff2760af462ef.tar.gz prosody-b0e35912875849cc5ae94433313ff2760af462ef.zip |
Merge with Zash
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_http.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua index 86689aff..610ae0ae 100644 --- a/plugins/mod_http.lua +++ b/plugins/mod_http.lua @@ -102,6 +102,7 @@ function module.add_host(module) end if not app_handlers[event_name] then app_handlers[event_name] = handler; + module:log("debug", "Adding app '%s' to handle %s", app_name, event_name); module:hook_object_event(server, event_name, handler); else module:log("warn", "App %s added handler twice for '%s', ignoring", app_name, event_name); |