# HG changeset patch # User Matthew Wild # Date 1530532694 -3600 # Node ID bedd3f4a8f90c1df19655387efb9c7af8cc4353c # Parent 44a187c82b5356e387aa29407df2911d3ddd8814 mod_http_upload_external: Reduce slot request log level from info to debug for privacy improvement diff -r 44a187c82b53 -r bedd3f4a8f90 mod_http_upload_external/mod_http_upload_external.lua --- a/mod_http_upload_external/mod_http_upload_external.lua Mon Jul 02 12:57:40 2018 +0100 +++ b/mod_http_upload_external/mod_http_upload_external.lua Mon Jul 02 12:58:14 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 [%d %s]", get_url, origin.username, origin.host, filesize, filetype); + module:log("debug", "Handing out upload slot %s to %s@%s [%d %s]", get_url, origin.username, origin.host, filesize, filetype); return get_url, put_url; end