monkey-front-core 0.0.559 → 0.0.561

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.
@@ -3926,19 +3926,14 @@ class MonkeyEcxLogsConfigService {
3926
3926
  defaultPrivacyLevel: 'mask-user-input'
3927
3927
  });
3928
3928
  datadogRum.startSessionReplayRecording();
3929
- // this.applyInfoToDataDog(environment);
3930
3929
  this.allSet = true;
3931
3930
  }
3931
+ this.applyInfoToDataDog(environment);
3932
3932
  }
3933
3933
  async applyInfoToDataDog(environment) {
3934
3934
  try {
3935
3935
  const tokenStorage = this.injector.get(MonkeyEcxTokenStorageService);
3936
- console.log('@@@@');
3937
- console.log(tokenStorage);
3938
3936
  const token = await tokenStorage.getToken();
3939
- console.log('aply info to datadog');
3940
- console.log(token);
3941
- console.log(environment);
3942
3937
  if (token.accessToken && environment.dataDogApplicationId) {
3943
3938
  const me = await tokenStorage.getMe();
3944
3939
  const user = {
@@ -3951,7 +3946,6 @@ class MonkeyEcxLogsConfigService {
3951
3946
  }
3952
3947
  }
3953
3948
  catch (e) {
3954
- console.log(e);
3955
3949
  // not to do
3956
3950
  }
3957
3951
  }