Skip to content

Commit

Permalink
Update databaseHelper.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
aelassas committed Nov 17, 2024
1 parent 1d49435 commit 72eee6a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/src/common/databaseHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}

Expand Down Expand Up @@ -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)
}
}

Expand Down Expand Up @@ -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)
}
}

Expand Down

0 comments on commit 72eee6a

Please sign in to comment.