remove unnecessary debug stmts

This commit is contained in:
Kenneth Kehl
2024-05-09 07:21:46 -07:00
parent 252a5debbe
commit 51c90878a2

View File

@@ -84,7 +84,6 @@ def incr_jobs_cache_misses():
redis_store.incr(JOBS_CACHE_MISSES) redis_store.incr(JOBS_CACHE_MISSES)
hits = redis_store.get(JOBS_CACHE_HITS).decode("utf-8") hits = redis_store.get(JOBS_CACHE_HITS).decode("utf-8")
misses = redis_store.get(JOBS_CACHE_MISSES).decode("utf-8") misses = redis_store.get(JOBS_CACHE_MISSES).decode("utf-8")
current_app.logger.debug(f"JOBS CACHE MISS hits {hits} misses {misses}")
def incr_jobs_cache_hits(): def incr_jobs_cache_hits():
@@ -94,7 +93,6 @@ def incr_jobs_cache_hits():
redis_store.incr(JOBS_CACHE_HITS) redis_store.incr(JOBS_CACHE_HITS)
hits = redis_store.get(JOBS_CACHE_HITS).decode("utf-8") hits = redis_store.get(JOBS_CACHE_HITS).decode("utf-8")
misses = redis_store.get(JOBS_CACHE_MISSES).decode("utf-8") misses = redis_store.get(JOBS_CACHE_MISSES).decode("utf-8")
current_app.logger.debug(f"JOBS CACHE HIT hits {hits} misses {misses}")
def extract_phones(job): def extract_phones(job):
@@ -102,7 +100,6 @@ def extract_phones(job):
first_row = job[0] first_row = job[0]
job.pop(0) job.pop(0)
first_row = first_row.split(",") first_row = first_row.split(",")
current_app.logger.debug(f"HEADERS {first_row}")
phone_index = 0 phone_index = 0
for item in first_row: for item in first_row:
# Note: may contain a BOM and look like \ufeffphone number # Note: may contain a BOM and look like \ufeffphone number