aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-01-30 17:35:13 +0100
committerKim Alvefur <zash@zash.se>2021-01-30 17:35:13 +0100
commit5be0b93eadaa9b77942b8507b6152f46de46be67 (patch)
tree08ca9f1fd5ba35099663f3b65a0fafefb47817d6
parentb97394ed9f03cb51b836185c5e766df39cf84a76 (diff)
downloadprosody-5be0b93eadaa9b77942b8507b6152f46de46be67.tar.gz
prosody-5be0b93eadaa9b77942b8507b6152f46de46be67.zip
mod_http_file_share: Clarify log message
No expired ... what? Could be inferred from the module logging it, but better to be explicit.
-rw-r--r--plugins/mod_http_file_share.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_http_file_share.lua b/plugins/mod_http_file_share.lua
index 65f28345..cc64b0ff 100644
--- a/plugins/mod_http_file_share.lua
+++ b/plugins/mod_http_file_share.lua
@@ -317,7 +317,7 @@ if expiry >= 0 and not external_base_url then
local iter, total = assert(uploads:find(nil, {["end"] = boundary_time; total = true}));
if total == 0 then
- module:log("info", "No expired to prune");
+ module:log("info", "No expired uploaded files to prune");
return;
end