Skip to content

Commit

Permalink
fix: remove leaky logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
skpdelegate committed Sep 13, 2024
1 parent af622be commit dd8184e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,11 @@ def upsert_tbr_metadata_batch(self, updated_isolates):
if column_mapping.normal_get(k)
}

logging.debug(f"Updating isolate {isolate_id} with {values}")
#logging.debug(f"Updating isolate {isolate_id} with {values}")
coerce_dates(values)
logging.debug(f"Updating isolate after date fixes {isolate_id} with {values}")
#logging.debug(f"Updating isolate after date fixes {isolate_id} with {values}")
encrypt_dict(self.encryption_client, values, pii_columns())
logging.debug(f"Updating isolate after encryption {isolate_id} with {values}")
#logging.debug(f"Updating isolate after encryption {isolate_id} with {values}")
update_query = pymongo.UpdateOne(
{"isolate_id": isolate_id}, {"$set": values}, upsert=True
)
Expand Down

0 comments on commit dd8184e

Please sign in to comment.