# HG changeset patch # User Kim Alvefur # Date 1614092861 -3600 # Node ID 19a59cb7311e86b5e9e8935af6074e51d33eca6d # Parent d5d895313be206fbb72962d969e59f64c4bb09e9 mod_http: Improve message for missing 'route' This was the late night early draft text, thought I had amended this but apparently I forgot. diff -r d5d895313be2 -r 19a59cb7311e plugins/mod_http.lua --- a/plugins/mod_http.lua Sun Feb 21 01:00:00 2021 +0100 +++ b/plugins/mod_http.lua Tue Feb 23 16:07:41 2021 +0100 @@ -162,7 +162,7 @@ if not event.item.route then -- TODO: Link to docs - module:log("error", "HTTP app %q provides no 'route', a typo or mistake?", app_name); + module:log("error", "HTTP app %q provides no 'route', add one to handle HTTP requests", app_name); return; end