monkey-front-core 0.0.279 → 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.
@@ -3131,7 +3131,16 @@ class MonkeyEcxFeatureToggleService {
3131
3131
  this.ldClient = initialize(environment.launchDarklyClientSideID, user, {
3132
3132
  streaming: true,
3133
3133
  disableSyncEventPost: true,
3134
- sendEvents: false
3134
+ sendEvents: false,
3135
+ diagnosticOptOut: true,
3136
+ logger: {
3137
+ debug: () => { },
3138
+ warn: () => { },
3139
+ info: () => { },
3140
+ error: (args) => {
3141
+ console.log('Monkey Client => ', args);
3142
+ }
3143
+ }
3135
3144
  });
3136
3145
  this.ldClient.on('change', this.getAllFlags.bind(this));
3137
3146
  this.ldClient.on('ready', this.getAllFlags.bind(this));