Changeset

8385:43d50a957463

MUC: Tweak debug log message
author Kim Alvefur <zash@zash.se>
date Thu, 09 Nov 2017 17:27:12 +0100
parents 8384:4a5c6f6214ee
children 8386:9d5eb384daa8
files plugins/muc/mod_muc.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);