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 | 5ecbd224981c62b5b1fe9526826de721f222a013 (patch) | |
tree | 6637e5b8d26ef640af5d3e3452fbc4b9d4b01ed4 | |
parent | 1d2aa12ca4afcd02fa1d44df105268d4694d3e6d (diff) | |
download | prosody-5ecbd224981c62b5b1fe9526826de721f222a013.tar.gz prosody-5ecbd224981c62b5b1fe9526826de721f222a013.zip |
mod_http: Link to docs on routes in error message
-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 |