@openfin/cloud-notification-core-api 10.0.0-beta.2 → 10.0.0-beta.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.
Files changed (3) hide show
  1. package/index.cjs +1 -0
  2. package/index.mjs +1 -0
  3. package/package.json +1 -1
package/index.cjs CHANGED
@@ -332,6 +332,7 @@ class CloudNotificationAPI {
332
332
  async connect(parameters) {
333
333
  validateConnectParameters(parameters);
334
334
  this.#connectionParams = parameters;
335
+ this.#logger('info', `Connecting to Cloud Notification service: ${this.#cloudNotificationSettings.url}`);
335
336
  if (this.#timeDifferenceTracker) {
336
337
  this.#timeDifferenceTracker.stop();
337
338
  this.#timeDifferenceTracker = undefined;
package/index.mjs CHANGED
@@ -330,6 +330,7 @@ class CloudNotificationAPI {
330
330
  async connect(parameters) {
331
331
  validateConnectParameters(parameters);
332
332
  this.#connectionParams = parameters;
333
+ this.#logger('info', `Connecting to Cloud Notification service: ${this.#cloudNotificationSettings.url}`);
333
334
  if (this.#timeDifferenceTracker) {
334
335
  this.#timeDifferenceTracker.stop();
335
336
  this.#timeDifferenceTracker = undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/cloud-notification-core-api",
3
- "version": "10.0.0-beta.2",
3
+ "version": "10.0.0-beta.4",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "main": "./index.cjs",