@nsshunt/stsinstrumentmanagerclient 1.0.3 → 1.0.4

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.
package/dist/index.mjs CHANGED
@@ -5621,7 +5621,7 @@ class RESTClientSubscriber {
5621
5621
  subscriptionKey: subscription.subscriptionKey,
5622
5622
  data: retVal
5623
5623
  };
5624
- this.#LogDebugMessage(chalk.yellow(`RESTClientSubscriber:#GetData(): data returned: subscriptionKey: [${JSON.stringify(subscription.subscriptionKey)}, retVal: [${JSON.stringify(retVal)}]`));
5624
+ this.#LogDebugMessage(chalk.yellow(`RESTClientSubscriber:#GetData(): data returned: subscriptionKey: [${JSON.stringify(subscription.subscriptionKey)}`));
5625
5625
  subscription.cb(payload);
5626
5626
  } else {
5627
5627
  this.#LogDebugMessage(chalk.yellow(`RESTClientSubscriber:#GetData(): No data returned: subscriptionKey: [${JSON.stringify(subscription.subscriptionKey)}`));
@@ -5643,6 +5643,7 @@ class RESTClientSubscriber {
5643
5643
  if (timeoutDuration < 500) {
5644
5644
  timeoutDuration = 500;
5645
5645
  }
5646
+ this.#LogDebugMessage(chalk.yellow(`Total duration for subscription: [${diff}], waiting: [${timeoutDuration}]`));
5646
5647
  socketSubscribeKeepAlive.timeout = this.#SetupTimeout(socketSubscribeKeepAlive, subscription, timeoutDuration);
5647
5648
  } else {
5648
5649
  this.#LogDebugMessage(chalk.yellow(`RESTClientSubscriber: Subscription removed: [${socketSubscribeKeepAlive.id}]. Processing terminate.`));