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