From f1e09908a63fa40e9e07124a5306a37e3f5c6d8a Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 22 Jul 2024 10:59:05 -0700 Subject: [PATCH] remove print statement --- app/aws/s3.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/aws/s3.py b/app/aws/s3.py index 6030d0ee2..ebdffddd5 100644 --- a/app/aws/s3.py +++ b/app/aws/s3.py @@ -217,7 +217,6 @@ def get_phone_number_from_s3(service_id, job_id, job_row_number): if job is None: job = get_job_from_s3(service_id, job_id) JOBS[job_id] = job - print(f"CACHE MISS FOR JOB_ID {job_id}") incr_jobs_cache_misses() else: incr_jobs_cache_hits()