# HG changeset patch # User Matthew Wild # Date 1530532611 -3600 # Node ID 7af4776a5dea9fdfed4d1cb5a71e796a995ece55 # Parent 5176b8d81ec7e0aece80cb5c430c000b84a120e1 mod_http_upload_external: Log file type and size diff -r 5176b8d81ec7 -r 7af4776a5dea mod_http_upload_external/mod_http_upload_external.lua --- a/mod_http_upload_external/mod_http_upload_external.lua Mon Jul 02 12:56:19 2018 +0100 +++ b/mod_http_upload_external/mod_http_upload_external.lua Mon Jul 02 12:56:51 2018 +0100 @@ -83,7 +83,7 @@ local get_url, verify = magic_crypto_dust(random, filename, filesize, filetype); local put_url = get_url .. verify; - module:log("info", "Handing out upload slot %s to %s@%s", get_url, origin.username, origin.host); + module:log("info", "Handing out upload slot %s to %s@%s [%d %s]", get_url, origin.username, origin.host, filesize, filetype); return get_url, put_url; end