File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -10,5 +10,6 @@ script:
1010 - " make test"
1111 - " make lint"
1212 - " make check-fmt"
13+ - " gunicorn --check-config app.main:APP"
1314after_success :
1415 - coveralls
Original file line number Diff line number Diff line change 1- web : gunicorn app.main:APP -k uvicorn.workers.UvicornWorker
1+ web : gunicorn app.main:APP --log-file=- --log-level info - k uvicorn.workers.UvicornWorker
Original file line number Diff line number Diff line change @@ -374,6 +374,6 @@ def country_code(value):
374374 """
375375 code = COUNTRY_NAME__COUNTRY_CODE .get (value , DEFAULT_COUNTRY_CODE )
376376 if code == DEFAULT_COUNTRY_CODE :
377- LOGGER .warning (f"No country code found for '{ value } '. Using '{ code } '!" )
377+ LOGGER .info (f"No country code found for '{ value } '. Using '{ code } '!" )
378378
379379 return code
You can’t perform that action at this time.
0 commit comments