From fb590627bbb9b8cfbcb6c06d45cb5d8e296cc58d Mon Sep 17 00:00:00 2001 From: Olivier 'reivilibre Date: Thu, 5 Feb 2026 10:13:44 +0000 Subject: [PATCH] Add logging on MSC4108 DELETE request (#5140) Just noticed these requests aren't logged, which makes debugging difficult. This is very drive-by, done in the web editor. Co-authored-by: R Midhun Suresh --- src/rendezvous/transports/MSC4108RendezvousSession.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/rendezvous/transports/MSC4108RendezvousSession.ts b/src/rendezvous/transports/MSC4108RendezvousSession.ts index 05430f83b..700ce67bf 100644 --- a/src/rendezvous/transports/MSC4108RendezvousSession.ts +++ b/src/rendezvous/transports/MSC4108RendezvousSession.ts @@ -262,7 +262,9 @@ export class MSC4108RendezvousSession { if (!this.url) return; try { - await this.fetch(this.url, { method: Method.Delete }); + const method = Method.Delete; + logger.info(`=> ${method} ${this.url}`); + await this.fetch(this.url, { method }); } catch (e) { logger.warn(e); }