Merge pull request #1201 from GSA/admin-1701_Logging_set_up_around_service_phone_numbers

Getting the logging where I think it will be most useful.
This commit is contained in:
Carlo Costino
2024-07-24 11:36:20 -04:00
committed by GitHub

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"]}; {data}')
return jsonify(data=data)