@genesislcap/foundation-store 14.71.0 → 14.71.1-auth-mf.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -256,7 +256,7 @@ export class AbstractStore {
256
256
  */
257
257
  logEvent(key, isAsyncHandler) {
258
258
  if (isDev()) {
259
- logger.info(`'${this.name}': Handle '${String(key)}' store event ${isAsyncHandler ? '[async]' : ''}`);
259
+ logger.debug(`'${this.name}': Handle '${String(key)}' store event ${isAsyncHandler ? '[async]' : ''}`);
260
260
  }
261
261
  }
262
262
  /**
@@ -313,7 +313,7 @@ export class AbstractStore {
313
313
  const [key, detail] = args;
314
314
  const hasDetail = detail !== undefined;
315
315
  if (isDev()) {
316
- logger.info(`'${this.name}': Emit '${key}' store event${hasDetail ? ` with ${logValue(detail)}` : ''}`);
316
+ logger.debug(`'${this.name}': Emit '${key}' store event${hasDetail ? ` with ${logValue(detail)}` : ''}`);
317
317
  }
318
318
  this.root.element.dispatchEvent(new CustomEvent(key, Object.assign({ detail }, internalEmitOptions)));
319
319
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/foundation-store",
3
3
  "description": "Genesis Foundation Store",
4
- "version": "14.71.0",
4
+ "version": "14.71.1-auth-mf.3",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -22,12 +22,12 @@
22
22
  "serve": "genx serve"
23
23
  },
24
24
  "devDependencies": {
25
- "@genesislcap/genx": "14.71.0",
25
+ "@genesislcap/genx": "14.71.1-auth-mf.3",
26
26
  "rimraf": "^3.0.2"
27
27
  },
28
28
  "dependencies": {
29
- "@genesislcap/foundation-events": "14.71.0",
30
- "@genesislcap/foundation-utils": "14.71.0",
29
+ "@genesislcap/foundation-events": "14.71.1-auth-mf.3",
30
+ "@genesislcap/foundation-utils": "14.71.1-auth-mf.3",
31
31
  "@microsoft/fast-element": "^1.7.0",
32
32
  "@microsoft/fast-foundation": "^2.33.2",
33
33
  "fast-safe-stringify": "^2.1.1",
@@ -42,5 +42,5 @@
42
42
  "publishConfig": {
43
43
  "access": "public"
44
44
  },
45
- "gitHead": "15e16e7c799ca2dc2e10f32fee0eb2a060c05ca3"
45
+ "gitHead": "296c1f938cde171316a18ef026c24143ef1bf2d4"
46
46
  }