diff --git a/src/targets/services/fluidsPrices.ts b/src/targets/services/fluidsPrices.ts index a374d9b34f2f9dbe3eb60d3ffa219e3642e8576d..a57025562299f7b6c79f78f858c3a68803ffa06b 100644 --- a/src/targets/services/fluidsPrices.ts +++ b/src/targets/services/fluidsPrices.ts @@ -56,7 +56,7 @@ const synchroPricesToUpdate = async ( remotePrice.UpdatedAt && existingPrice.UpdatedAt < remotePrice.UpdatedAt ) { - log('info', `Price exist in db but not up to date, updating it`) + log('debug', `Price exist in db but not up to date, updating it`) //If a price has been updated, set the oldest startDate of the edited price so we can redo aggregation if (firstEditedPrice === null) { firstEditedPrice = remotePrice.startDate @@ -78,10 +78,10 @@ const synchroPricesToUpdate = async ( UpdatedAt: remotePrice.UpdatedAt, }) } else { - log('info', `Price up to date`) + log('debug', `Price up to date`) } } else { - log('info', `Price doesn't exist in db, creating new price`) + log('debug', `Price doesn't exist in db, creating new price`) //If a price has been updated, set the oldest startDate of the edited price so we can redo aggregation if (firstEditedPrice === null) { firstEditedPrice = remotePrice.startDate