monkey-front-core 0.0.553 → 0.0.555
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-logs-config.service.mjs +5 -1
- package/fesm2015/monkey-front-core.mjs +4 -0
- package/fesm2015/monkey-front-core.mjs.map +1 -1
- package/fesm2020/monkey-front-core.mjs +4 -0
- package/fesm2020/monkey-front-core.mjs.map +1 -1
- package/monkey-front-core-0.0.555.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.553.tgz +0 -0
|
@@ -3926,12 +3926,16 @@ class MonkeyEcxLogsConfigService {
|
|
|
3926
3926
|
defaultPrivacyLevel: 'mask-user-input'
|
|
3927
3927
|
});
|
|
3928
3928
|
datadogRum.startSessionReplayRecording();
|
|
3929
|
+
this.applyInfoToDataDog(environment);
|
|
3929
3930
|
this.allSet = true;
|
|
3930
3931
|
}
|
|
3931
3932
|
}
|
|
3932
3933
|
async applyInfoToDataDog(environment) {
|
|
3933
3934
|
try {
|
|
3934
3935
|
const token = await this.tokenStorage.getToken();
|
|
3936
|
+
console.log('aply info to datadog');
|
|
3937
|
+
console.log(token);
|
|
3938
|
+
console.log(environment);
|
|
3935
3939
|
if (token.accessToken && environment.dataDogApplicationId) {
|
|
3936
3940
|
const me = await this.tokenStorage.getMe();
|
|
3937
3941
|
const user = {
|