Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
change missing country code to debug level
  • Loading branch information
Kilo59 committed Apr 19, 2020
commit 8441533d93aa3fbfe817690212658d413f801b0e
2 changes: 1 addition & 1 deletion app/utils/countries.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,6 @@ def country_code(value):
"""
code = COUNTRY_NAME__COUNTRY_CODE.get(value, DEFAULT_COUNTRY_CODE)
if code == DEFAULT_COUNTRY_CODE:
LOGGER.info(f"No country code found for '{value}'. Using '{code}'!")
LOGGER.debug(f"No country code found for '{value}'. Using '{code}'!")

return code