# HG changeset patch # User Kim Alvefur # Date 1464707446 -7200 # Node ID e47046abf5684607de912ffe238d26cfab164bd4 # Parent 0c01444f8bc27e6d70cfcd46b494c2576accdf93 mod_http_upload: Add more logging diff -r 0c01444f8bc2 -r e47046abf568 mod_http_upload/mod_http_upload.lua --- a/mod_http_upload/mod_http_upload.lua Tue May 31 16:15:54 2016 +0200 +++ b/mod_http_upload/mod_http_upload.lua Tue May 31 17:10:46 2016 +0200 @@ -83,6 +83,7 @@ -- http service local function upload_data(event, path) if not pending_slots[path] then + module:log("warn", "Attempt to upload to unknown slot %q", path); return 401; end local random, filename = path:match("^([^/]+)/([^/]+)$");