# HG changeset patch # User Matthew Wild # Date 1596635830 -3600 # Node ID 8e28d0918abcf6d30fe86fbf8b979d35cf925a65 # Parent 268fa9d458406d3437db070220370572fff97d10 mod_muc_markers: Add room JID to log message diff -r 268fa9d45840 -r 8e28d0918abc mod_muc_markers/mod_muc_markers.lua --- a/mod_muc_markers/mod_muc_markers.lua Sun Jul 26 16:15:37 2020 +0200 +++ b/mod_muc_markers/mod_muc_markers.lua Wed Aug 05 14:57:10 2020 +0100 @@ -63,7 +63,7 @@ end -- Store the id that the user has received to - module:log("warn", "New marker for %s: %s", event.occupant.bare_jid, marker.attr.id); + module:log("warn", "New marker for %s in %s: %s", event.occupant.bare_jid, event.room.jid, marker.attr.id); muc_marker_map_store:set(event.occupant.bare_jid, event.room.jid, marker.attr.id); end);