From 72eee6acffc10fd6b154e0667dd87a203b9357a8 Mon Sep 17 00:00:00 2001 From: aelassas Date: Sun, 17 Nov 2024 23:25:13 +0100 Subject: [PATCH] Update databaseHelper.ts --- api/src/common/databaseHelper.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/src/common/databaseHelper.ts b/api/src/common/databaseHelper.ts index 26cce6d42..a4972a38e 100644 --- a/api/src/common/databaseHelper.ts +++ b/api/src/common/databaseHelper.ts @@ -92,7 +92,7 @@ const initializeLocations = async () => { } } } else { - console.log('English value not found for location:', location.id) + logger.info('English value not found for location:', location.id) } } @@ -148,7 +148,7 @@ const initializeCountries = async () => { } } } else { - console.log('English value not found for country:', country.id) + logger.info('English value not found for country:', country.id) } } @@ -204,7 +204,7 @@ const initializeParkingSpots = async () => { } } } else { - console.log('English value not found for parkingSpot:', parkingSpot.id) + logger.info('English value not found for parkingSpot:', parkingSpot.id) } }