monkey-front-core 0.0.554 → 0.0.556
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.556.tgz +0 -0
- package/package.json +1 -1
- package/monkey-front-core-0.0.554.tgz +0 -0
|
@@ -3933,6 +3933,9 @@ class MonkeyEcxLogsConfigService {
|
|
|
3933
3933
|
async applyInfoToDataDog(environment) {
|
|
3934
3934
|
try {
|
|
3935
3935
|
const token = await this.tokenStorage.getToken();
|
|
3936
|
+
console.log('aply info to datadog');
|
|
3937
|
+
console.log(token);
|
|
3938
|
+
console.log(environment);
|
|
3936
3939
|
if (token.accessToken && environment.dataDogApplicationId) {
|
|
3937
3940
|
const me = await this.tokenStorage.getMe();
|
|
3938
3941
|
const user = {
|
|
@@ -3945,6 +3948,7 @@ class MonkeyEcxLogsConfigService {
|
|
|
3945
3948
|
}
|
|
3946
3949
|
}
|
|
3947
3950
|
catch (e) {
|
|
3951
|
+
console.log(e);
|
|
3948
3952
|
// not to do
|
|
3949
3953
|
}
|
|
3950
3954
|
}
|