We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27a0f1e commit cb4bbc0Copy full SHA for cb4bbc0
app/utils/countries.py
@@ -374,6 +374,7 @@ def country_code(value):
374
"""
375
code = COUNTRY_NAME__COUNTRY_CODE.get(value, DEFAULT_COUNTRY_CODE)
376
if code == DEFAULT_COUNTRY_CODE:
377
- LOGGER.debug(f"No country code found for '{value}'. Using '{code}'!")
+ # log at sub DEBUG level
378
+ LOGGER.log(5, f"No country code found for '{value}'. Using '{code}'!")
379
380
return code
0 commit comments