mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_muc_mam: Log error when unable to delete old messages (fix #1481) [luacheck]
This commit is contained in:
parent
b10527f724
commit
9482392517
1 changed files with 2 additions and 0 deletions
|
@ -459,6 +459,8 @@ if cleanup_after ~= "never" then
|
||||||
if ok then
|
if ok then
|
||||||
num_rooms = num_rooms + 1;
|
num_rooms = num_rooms + 1;
|
||||||
sum = sum + (tonumber(ok) or 0);
|
sum = sum + (tonumber(ok) or 0);
|
||||||
|
else
|
||||||
|
module:log("error", "Could not delete messages for room '%s': %s", room, err);
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
module:log("info", "Deleted %d expired messages for %d rooms", sum, num_rooms);
|
module:log("info", "Deleted %d expired messages for %d rooms", sum, num_rooms);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue