Getting the logging where I think it will be most useful.

Signed-off-by: Cliff Hill <Clifford.hill@gsa.gov>
This commit is contained in:
Cliff Hill
2024-07-22 16:27:02 -04:00
parent b82e387ac9
commit 67b43ffbb1
2 changed files with 6 additions and 8 deletions

View File

@@ -201,6 +201,8 @@ def get_service_by_id(service_id):
fetched = dao_fetch_service_by_id(service_id)
data = service_schema.dump(fetched)
current_app.logger.info(f'>> SERVICE: {data["id"]}; sms_senders: {data["sms_senders_with_hints"]}')
return jsonify(data=data)