From aa7f901442e4a458b489d3862a6f1f2040cff991 Mon Sep 17 00:00:00 2001 From: Kerboul Date: Sun, 27 Apr 2025 12:41:34 +0200 Subject: [PATCH] =?UTF-8?q?feat(camera):=20Ajouter=20un=20log=20pour=20aff?= =?UTF-8?q?icher=20l'identifiant=20du=20projet=20lors=20du=20d=C3=A9marrag?= =?UTF-8?q?e=20de=20la=20proc=C3=A9dure?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/controllers/cameraController.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/controllers/cameraController.js b/src/controllers/cameraController.js index 8f392a9..bdf3018 100644 --- a/src/controllers/cameraController.js +++ b/src/controllers/cameraController.js @@ -32,6 +32,8 @@ class CameraController { */ static startProcedure = asyncHandler(async (req, res) => { const { project_id, interval, nb_images } = req.body; + + console.log('project_id:', project_id); if (!interval || !nb_images) { return sendError('L\'intervalle et le nombre d\'images sont requis', res, null, 400);