diff options
author | Kim Alvefur <zash@zash.se> | 2019-01-04 10:14:55 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-01-04 10:14:55 +0100 |
commit | 3738686f06f0156da85df269050f3f754c7603cd (patch) | |
tree | fb16d6e91e21bca5375ef45d2c957dbc3b8c34cb /plugins/mod_mam | |
parent | c68690726162f0ab0efb62f1cb455001c06b0fa7 (diff) | |
download | prosody-3738686f06f0156da85df269050f3f754c7603cd.tar.gz prosody-3738686f06f0156da85df269050f3f754c7603cd.zip |
mod_mam: Fix word order in log message
Diffstat (limited to 'plugins/mod_mam')
-rw-r--r-- | plugins/mod_mam/mod_mam.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index 18f84752..35a4b9a0 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -375,7 +375,7 @@ if cleanup_after ~= "never" then sum = sum + tonumber(ok) or 0; end end - module:log("info", "Deleted expired %d messages for %d users", sum, num_users); + module:log("info", "Deleted %d expired messages for %d users", sum, num_users); end); cleanup_task = module:add_timer(1, function () |