monkey-front-core 0.0.278 → 0.0.280
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/esm2020/lib/core/services/config/monkeyecx-feature-toggle.service.mjs +10 -2
- package/fesm2015/monkey-front-core.mjs +9 -1
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +9 -1
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.280.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.278.tgz +0 -0
|
@@ -3132,7 +3132,15 @@ class MonkeyEcxFeatureToggleService {
|
|
|
3132
3132
|
streaming: true,
|
|
3133
3133
|
disableSyncEventPost: true,
|
|
3134
3134
|
sendEvents: false,
|
|
3135
|
-
diagnosticOptOut: true
|
|
3135
|
+
diagnosticOptOut: true,
|
|
3136
|
+
logger: {
|
|
3137
|
+
debug: () => { },
|
|
3138
|
+
warn: () => { },
|
|
3139
|
+
info: () => { },
|
|
3140
|
+
error: (args) => {
|
|
3141
|
+
console.log('Monkey Client => ', args);
|
|
3142
|
+
}
|
|
3143
|
+
}
|
|
3136
3144
|
});
|
|
3137
3145
|
this.ldClient.on('change', this.getAllFlags.bind(this));
|
|
3138
3146
|
this.ldClient.on('ready', this.getAllFlags.bind(this));
|