fhir_client
fhir_client copied to clipboard
Question: Underlying request details
Is there a way that I can inspect the underlying details of the HTTP request when I do something like this?
FHIR::Patient.read('example')
I'd like to handle this information in my application code, not just see it in the logs.
Have you tried something like FHIR.logger = Rails.logger
?
I haven't, but I'll try it out and report back . Thank you.