MUC: Tweak debug log message
authorKim Alvefur <zash@zash.se>
Thu, 09 Nov 2017 17:27:12 +0100
changeset 8388 43d50a957463
parent 8387 4a5c6f6214ee
child 8389 9d5eb384daa8
MUC: Tweak debug log message
plugins/muc/mod_muc.lua
--- a/plugins/muc/mod_muc.lua	Fri Nov 10 05:50:03 2017 +0100
+++ b/plugins/muc/mod_muc.lua	Thu Nov 09 17:27:12 2017 +0100
@@ -115,7 +115,7 @@
 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);