mod_http_files: Log 404 failure reason

This commit is contained in:
Matthew Wild 2012-04-26 06:30:29 +01:00
parent 23e05cc038
commit 19f0eb98bf

View file

@ -58,6 +58,7 @@ function serve_file(event, path)
end
local f, err = open(full_path, "rb");
if not f then
module:log("warn", "Failed to open file: %s", err);
return 404;
end
local data = f:read("*a");