deleted a console log
Unit Tests with docker compose / unit-test (pull_request) Successful in 3m59s Details

This commit is contained in:
Alie 2023-12-31 12:01:21 +01:00
parent 199f06db43
commit 98f9c5bf8e
1 changed files with 0 additions and 1 deletions

View File

@ -8,7 +8,6 @@ class ImageController {
const images = await imageService.findAll(); const images = await imageService.findAll();
res.json({ images }); res.json({ images });
} catch (error) { } catch (error) {
console.error(error);
res.status(500).json({ error: "Internal Server Error" }); res.status(500).json({ error: "Internal Server Error" });
} }
} }