From 4a83d6a5563fbf4d52940a3ed148e2a37793c772 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Fri, 1 Jun 2018 09:56:22 +0200 Subject: MUC: Add some debug logging for voice requests --- plugins/muc/moderated.lib.lua | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'plugins/muc/moderated.lib.lua') diff --git a/plugins/muc/moderated.lib.lua b/plugins/muc/moderated.lib.lua index 4ec8686a..74ce3db8 100644 --- a/plugins/muc/moderated.lib.lua +++ b/plugins/muc/moderated.lib.lua @@ -71,21 +71,26 @@ module:hook("muc-voice-response", function(event) local occupant = event.occupant; if occupant.role ~= "moderator" then + module:log("debug", "%s tried to grant voice but wasn't a moderator", jid_resource(occupant.nick)); return; end if not event.fields["muc#request_allow"] then + module:log("debug", "%s did not grant voice", jid_resource(occupant.nick)); return; end if not affected_occupant then + module:log("debug", "%s tried to grant voice to unknown occupant %s", jid_resource(occupant.nick), event.fields["muc#jid"]); return; end if affected_occupant.role ~= "visitor" then + module:log("debug", "%s tried to grant voice to %s but they already have it", jid_resource(occupant.nick), jid_resource(occupant.jid)); return; end + module:log("debug", "%s granted voice to %s", jid_resource(occupant.nick), jid_resource(occupant.jid)); event.room:set_role(actor, affected_occupant.nick, "participant", "Voice granted"); end); -- cgit v1.2.3