endoreg-db 0.8.2.2__py3-none-any.whl → 0.8.2.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of endoreg-db might be problematic. Click here for more details.

@@ -56,7 +56,7 @@ def generate_patient_pseudonym(patient: Patient) -> Tuple[str, bool]:
56
56
  patient.patient_hash = patient_hash
57
57
  patient.save(update_fields=['patient_hash'])
58
58
 
59
- logger.info(f"Generated and persisted pseudonym for patient {patient.id}")
59
+ logger.info(f"Generated and persisted pseudonym for patient {patient.id}: {patient_hash[:8]}...")
60
60
 
61
61
  return patient_hash, True
62
62