0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 20:42:43 +00:00

Remove console.log statement in /metadata/:id route handler

This commit is contained in:
Víctor Losada Hernández
2024-07-19 08:58:19 +02:00
parent 243038474e
commit bcef4006dc

View File

@@ -209,7 +209,6 @@ app.get('/metadata/:id', asyncHandler(getBrew('share')), (req, res) => {
if (brew[field] !== undefined) acc[field] = brew[field];
return acc;
}, {});
console.log(metadata);
res.status(200).json(metadata);
});