@nsshunt/stsobservability 1.0.139 → 1.0.140
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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -5570,9 +5570,9 @@ class ObservabilitySocketIOSubscriber {
|
|
|
5570
5570
|
const currentSubscriptions = Object.keys(this.subscriptions).toString();
|
|
5571
5571
|
if (this.subscriptions[subId]) {
|
|
5572
5572
|
this.subscriptions[subId].cb(data);
|
|
5573
|
-
cb(`sstsobservability:subscriptionData Response: [${data.subscriptionKey}], Current Subscriptions: [${currentSubscriptions}]`);
|
|
5573
|
+
cb(`sstsobservability:subscriptionData Response: [${JSON.stringify(data.subscriptionKey)}], Current Subscriptions: [${currentSubscriptions}]`);
|
|
5574
5574
|
} else {
|
|
5575
|
-
cb(`sstsobservability:subscriptionData Response: No subscription found in subscriptions: [${data.subscriptionKey}], Current Subscriptions: [${currentSubscriptions}]`);
|
|
5575
|
+
cb(`sstsobservability:subscriptionData Response: No subscription found in subscriptions: [${JSON.stringify(data.subscriptionKey)}], Current Subscriptions: [${currentSubscriptions}]`);
|
|
5576
5576
|
}
|
|
5577
5577
|
});
|
|
5578
5578
|
}
|