From b46824ff9898d9051ff4db826ffe4f95197900f4 Mon Sep 17 00:00:00 2001 From: Vishnu Date: Mon, 19 May 2025 09:42:27 +0530 Subject: [PATCH] updated log --- apps/Backend/src/routes/appointements.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/Backend/src/routes/appointements.ts b/apps/Backend/src/routes/appointements.ts index efc0a4f..40ad560 100644 --- a/apps/Backend/src/routes/appointements.ts +++ b/apps/Backend/src/routes/appointements.ts @@ -216,7 +216,6 @@ router.put( // Validate request body const appointmentData = updateAppointmentSchema.parse(req.body); - console.log("Validated appointment update data:", appointmentData); // If patient ID is being updated, verify the new patient belongs to user if ( @@ -282,7 +281,6 @@ router.put( appointmentId, appointmentData ); - console.log("Appointment updated successfully:", updatedAppointment); res.json(updatedAppointment); } catch (error) { console.error("Error updating appointment:", error);