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); }