From fcc5ae7db4daaceeaa828aff7eb7cdbd3c7faa3d Mon Sep 17 00:00:00 2001 From: Peco1503 <102172862+Peco1503@users.noreply.github.com> Date: Tue, 11 Jun 2024 16:58:00 -0600 Subject: [PATCH] removed services logs --- services/cvService.ts | 1 - services/recommendationService.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/services/cvService.ts b/services/cvService.ts index ce1bd6e..bdcf91d 100644 --- a/services/cvService.ts +++ b/services/cvService.ts @@ -7,7 +7,6 @@ export const findCVById = async (cvID: string) => { const cv = await prisma.cv.findUnique({ where: { cv_id: cvID }, }); - console.log(cv); return cv; } catch (error) { console.error('Failed to fetch CV:', error); diff --git a/services/recommendationService.ts b/services/recommendationService.ts index e5006e7..637509c 100644 --- a/services/recommendationService.ts +++ b/services/recommendationService.ts @@ -23,7 +23,6 @@ export const findRecommendationById = async (recommendationId: string) => { export const findRecommendationsByCvId = async (cvId: string): Promise => { try { - console.log("Fetching recommendations for CV ID:", cvId) const recommendations = await prisma.recommendation.findMany({ where: { cv_id: cvId } });