mod_http_files: Log the error if we can't open or read a file

This commit is contained in:
Kim Alvefur 2012-12-21 16:10:45 +01:00
parent 42907ced08
commit 92abfa2d51

View file

@ -115,10 +115,11 @@ function serve_file(event, path)
else
local f, err = open(full_path, "rb");
if f then
data = f:read("*a");
data, err = f:read("*a");
f:close();
end
if not data then
module:log("debug", "Could not open or read %s. Error was %s", full_path, err);
return 403;
end
local ext = path:match("%.([^./]+)$");