aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-11-09 17:27:12 +0100
committerKim Alvefur <zash@zash.se>2017-11-09 17:27:12 +0100
commite9fb64271eaf0b86df254c49d870eca792399120 (patch)
tree493dfb53caf1add2abbbb360da1843d876941404
parent76c84b80d660186967267fc4dfa6bdbaed32dd5f (diff)
downloadprosody-e9fb64271eaf0b86df254c49d870eca792399120.tar.gz
prosody-e9fb64271eaf0b86df254c49d870eca792399120.zip
MUC: Tweak debug log message
-rw-r--r--plugins/muc/mod_muc.lua2
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);