diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-04-27 18:36:27 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-04-27 18:36:27 +0100 |
commit | d4e44895770446226c22513ac9bf1d7b12396f47 (patch) | |
tree | 6637e5b8d26ef640af5d3e3452fbc4b9d4b01ed4 /plugins/mod_http.lua | |
parent | 1565fe93a2b0650262b7b6b92e0c40f66a866e96 (diff) | |
download | prosody-d4e44895770446226c22513ac9bf1d7b12396f47.tar.gz prosody-d4e44895770446226c22513ac9bf1d7b12396f47.zip |
mod_http: Link to docs on routes in error message
Diffstat (limited to 'plugins/mod_http.lua')
-rw-r--r-- | plugins/mod_http.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_http.lua b/plugins/mod_http.lua index 7b962457..93d58439 100644 --- a/plugins/mod_http.lua +++ b/plugins/mod_http.lua @@ -67,7 +67,7 @@ function module.add_host(module) module:log("warn", "App %s added handler twice for '%s', ignoring", app_name, event_name); end else - module:log("error", "Invalid route in %s: %q", app_name, key); + module:log("error", "Invalid route in %s, %q. See http://prosody.im/doc/developers/http#routes", app_name, key); end end end |