mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_offline: Log a debug message when message is stored
This commit is contained in:
parent
a4f4107e5a
commit
082761bde3
1 changed files with 5 additions and 1 deletions
|
@ -24,7 +24,11 @@ module:hook("message/offline/handle", function(event)
|
|||
node = origin.username;
|
||||
end
|
||||
|
||||
return offline_messages:append(node, nil, stanza, os.time(), "");
|
||||
local ok = offline_messages:append(node, nil, stanza, os.time(), "");
|
||||
if ok then
|
||||
module:log("debug", "Saved to offline storage: %s", stanza:top_tag());
|
||||
end
|
||||
return ok;
|
||||
end, -1);
|
||||
|
||||
module:hook("message/offline/broadcast", function(event)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue