mod_http: Improve message for missing 'route'

This was the late night early draft text, thought I had amended this but
apparently I forgot.
This commit is contained in:
Kim Alvefur 2021-02-23 16:07:41 +01:00
parent 19eb907613
commit 4ed5700a19

View file

@ -162,7 +162,7 @@ function module.add_host(module)
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