Skip to content

Commit

Permalink
Add variable to logger
Browse files Browse the repository at this point in the history
  • Loading branch information
celine-m-s committed Feb 10, 2025
1 parent ad15a19 commit edb21f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion itou/eligibility/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
def certify_criteria(eligibility_diagnosis):
job_seeker = eligibility_diagnosis.job_seeker
if not api_particulier.has_required_info(job_seeker):
logger.info("Skipping {job_seeker.pk=}, missing required information.")
logger.info("Skipping job seeker %s, missing required information.", job_seeker.pk)
return
if not eligibility_diagnosis.criteria_can_be_certified():
logger.info("Eligibility diagnosis not from an employer. This should not happen.")
Expand Down

0 comments on commit edb21f0

Please sign in to comment.