Merge pull request #3407 from alphagov/downgrade-inbound-log

Downgrade log about orphaned inbound SMS
This commit is contained in:
Ben Thorner
2021-12-21 13:36:10 +00:00
committed by GitHub

View File

@@ -159,7 +159,7 @@ def fetch_potential_service(inbound_number, provider_name):
service = dao_fetch_service_by_inbound_number(inbound_number)
if not service:
current_app.logger.error('Inbound number "{}" from {} not associated with a service'.format(
current_app.logger.warning('Inbound number "{}" from {} not associated with a service'.format(
inbound_number, provider_name
))
return False