diff --git a/src/controllers/ImageController.ts b/src/controllers/ImageController.ts index 8c78e99..75fca37 100644 --- a/src/controllers/ImageController.ts +++ b/src/controllers/ImageController.ts @@ -8,7 +8,6 @@ class ImageController { const images = await imageService.findAll(); res.json({ images }); } catch (error) { - console.error(error); res.status(500).json({ error: "Internal Server Error" }); } }