From 5156e4310e7ddcea96cf272248714bef5e444c4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= <35407363+EniumRaphael@users.noreply.github.com> Date: Wed, 10 Dec 2025 18:00:55 +0100 Subject: [PATCH] style(routes/info): removing debug print Removed console log for user information retrieval. --- src/user/src/routes/info.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/user/src/routes/info.ts b/src/user/src/routes/info.ts index 784ea23..ec46265 100644 --- a/src/user/src/routes/info.ts +++ b/src/user/src/routes/info.ts @@ -49,8 +49,6 @@ const route: FastifyPluginAsync = async (fastify, _opts): Promise => { if (isNullish(user)) { return res.makeResponse(404, 'failure', 'userinfo.failure.unknownUser'); } - console.log(user); - const payload = { name: user.name, id: user.id,