diff --git a/routes/file.js b/routes/file.js index ab06e4d..ac9bfa9 100644 --- a/routes/file.js +++ b/routes/file.js @@ -83,7 +83,7 @@ router.get("/:repoId/stats", async (req, res) => { const stats = await fileUtils.getStats({ repoConfig }); return res.json(stats.languages); } catch (error) { - console.error(req.params.repoId, req.params.path, error); + console.error(req.params.repoId, error); return res.status(500).json({ error }); } });