@nsshunt/stsfhirclient 1.0.58 → 1.0.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5164,11 +5164,16 @@ class FhirSocketClient {
5164
5164
  body: {}
5165
5165
  };
5166
5166
  return new Promise((resolve, reject) => {
5167
+ const start = performance.now();
5167
5168
  this.socket.timeout(__privateGet(this, _options2).timeout).emit("getFhirResources", resource, request, (err, res) => {
5168
5169
  if (err) {
5170
+ const duration = (performance.now() - start) / 1e3;
5171
+ console.log(`FhirSocketClient:GetResources(): Duration for query (error): [${duration}]`);
5169
5172
  __privateGet(this, _error).call(this, `FhirSocketClient:GetResources(): ID: [${__privateGet(this, _id)}] clientName: [${__privateGet(this, _clientName)}] Error: [${err}]`);
5170
5173
  reject(err);
5171
5174
  } else {
5175
+ const duration = (performance.now() - start) / 1e3;
5176
+ console.log(`FhirSocketClient:GetResources(): Duration for query: [${duration}]`);
5172
5177
  resolve(res);
5173
5178
  }
5174
5179
  });