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 | 76f85eb776b39feeb37c8dd276fcd9eaf6c722c7 (patch) | |
tree | fb16d6e91e21bca5375ef45d2c957dbc3b8c34cb /plugins/mod_mam | |
parent | e4087a66e42e86ea4aae8d6cba1bc7dbb66ecb87 (diff) | |
download | prosody-76f85eb776b39feeb37c8dd276fcd9eaf6c722c7.tar.gz prosody-76f85eb776b39feeb37c8dd276fcd9eaf6c722c7.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 () |