Skip to content

Commit

Permalink
Fix code scanning alert no. 3: Clear-text logging of sensitive inform…
Browse files Browse the repository at this point in the history
…ation

Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
  • Loading branch information
amrit110 and github-advanced-security[bot] authored Nov 12, 2024
1 parent 9a48d17 commit f389340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion health_rec/services/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def _parse_single_phone(phone_data: Any) -> Optional[PhoneNumber]:
extension=extension,
)
except Exception as e:
logger.debug(f"Error parsing phone number {phone_data}: {e}")
logger.debug(f"Error parsing phone number: {e}")
return None


Expand Down

0 comments on commit f389340

Please sign in to comment.