We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1088a37 commit 62e3b39Copy full SHA for 62e3b39
gateway-api/src/gateway_api/app.py
@@ -37,6 +37,7 @@ def get_app_port() -> int:
37
@app.route("/patient/$gpc.getstructuredrecord", methods=["POST"])
38
def get_structured_record() -> Response:
39
try:
40
+ print(f"Headers: {request.headers}", flush=True)
41
get_structured_record_request = GetStructuredRecordRequest(request)
42
except RequestValidationError as e:
43
response = Response(
0 commit comments