From 4355b49e6f57df5c545986c89143274d59ec9b4d Mon Sep 17 00:00:00 2001 From: Matthieu Jolimaitre Date: Tue, 13 Aug 2024 19:39:54 +0200 Subject: [PATCH] add logging for dissociations --- src/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.ts b/src/main.ts index 4c5be18..a362256 100755 --- a/src/main.ts +++ b/src/main.ts @@ -125,6 +125,7 @@ class Service { async dissociation_procedure(discord_user_id: string): Promise { try { + log("dissociating user", discord_user_id); await this.state.remove_user(discord_user_id); } catch (error) { console.error(error);