From fee40b10a266d59f655ba0fbe7aa66d43b1fa782 Mon Sep 17 00:00:00 2001 From: Sosokker Date: Tue, 2 Sep 2025 21:23:31 +0700 Subject: [PATCH] fix: simplify interaction logging by removing detailed user information --- src/index.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/index.ts b/src/index.ts index f45d1ab..bc56d44 100644 --- a/src/index.ts +++ b/src/index.ts @@ -132,15 +132,7 @@ app.post("/interactions", async (c) => { } const interaction = JSON.parse(raw); - logger.info( - { - user: interaction.user.id, - name: interaction.name, - guideId: interaction.channel.guild_id, - channelId: interaction.channel_id, - }, - "Received interaction", - ); + logger.info("Received interaction"); const { type } = interaction; if (type === 1) {