Skip to content

Commit

Permalink
fix: updating log level of a log message
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael0202 committed Dec 9, 2022
1 parent 289dc17 commit ac2a479
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions robotoff/insights/importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,7 @@ def is_recent_image(

for upload_datetime in remaining_datetimes:
if upload_datetime - image_datetime > max_timedelta:
logger.info(
"More recent image: {} > {}".format(upload_datetime, image_datetime)
)
logger.debug(f"More recent image: {upload_datetime} > {image_datetime}")
return False

return True
Expand Down

0 comments on commit ac2a479

Please sign in to comment.