diff options
author | Kim Alvefur <zash@zash.se> | 2017-11-09 17:27:12 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-11-09 17:27:12 +0100 |
commit | ec6b526ce119090f9f7214c1af221eb9b9207251 (patch) | |
tree | 493dfb53caf1add2abbbb360da1843d876941404 /plugins/muc | |
parent | 5acbf54cb41c01985351eb388a9e6866e43277f8 (diff) | |
download | prosody-ec6b526ce119090f9f7214c1af221eb9b9207251.tar.gz prosody-ec6b526ce119090f9f7214c1af221eb9b9207251.zip |
MUC: Tweak debug log message
Diffstat (limited to 'plugins/muc')
-rw-r--r-- | plugins/muc/mod_muc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index cf2c7440..2a616902 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -115,7 +115,7 @@ local function room_save(room, forced, savestate) end local rooms = cache.new(module:get_option_number("muc_room_cache_size", 100), function (jid, room) - module:log("debug", "%s evicted", jid); + module:log("debug", "Evicting room %s", jid); room_save(room, nil, true); -- Force to disk end); |