debug: log all room messages in verification handler to diagnose in-room verification

This commit is contained in:
dave
2026-04-02 13:08:02 +00:00
parent 358f177584
commit cd6d98b99f
@@ -103,6 +103,7 @@ pub(super) async fn on_room_verification_request(
ev: OriginalSyncRoomMessageEvent,
client: Client,
) {
slog!("[matrix-bot] DEBUG room msg from {} msgtype={:?}", ev.sender, ev.content.msgtype);
// Only act on in-room verification request messages.
if !matches!(ev.content.msgtype, MessageType::VerificationRequest(_)) {
return;