aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-05-07 20:23:29 +0200
committerKim Alvefur <zash@zash.se>2017-05-07 20:23:29 +0200
commit49655b22344eaa3ee55d9059965b4a5ffe36654c (patch)
tree068fb1a035df190c68f42adb0c15ec60c4ff0348 /plugins
parente863b13420cf950e28539e29b0a7d03e143a81e8 (diff)
downloadprosody-49655b22344eaa3ee55d9059965b4a5ffe36654c.tar.gz
prosody-49655b22344eaa3ee55d9059965b4a5ffe36654c.zip
mod_mam: Format timestamps in log message
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_mam/mod_mam.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua
index accb047b..4235fd59 100644
--- a/plugins/mod_mam/mod_mam.lua
+++ b/plugins/mod_mam/mod_mam.lua
@@ -123,7 +123,9 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event)
end
module:log("debug", "Archive query, id %s with %s from %s until %s)",
- tostring(qid), qwith or "anyone", qstart or "the dawn of time", qend or "now");
+ tostring(qid), qwith or "anyone",
+ qstart and timestamp(qstart) or "the dawn of time",
+ qend and timestamp(qend) or "now");
-- RSM stuff
local qset = rsm.get(query);