style(routes/info): removing debug print

Removed console log for user information retrieval.
This commit is contained in:
Raphaël 2025-12-10 18:00:55 +01:00 committed by GitHub
parent 763d0c38cc
commit 5156e4310e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,8 +49,6 @@ const route: FastifyPluginAsync = async (fastify, _opts): Promise<void> => {
if (isNullish(user)) { if (isNullish(user)) {
return res.makeResponse(404, 'failure', 'userinfo.failure.unknownUser'); return res.makeResponse(404, 'failure', 'userinfo.failure.unknownUser');
} }
console.log(user);
const payload = { const payload = {
name: user.name, name: user.name,
id: user.id, id: user.id,