We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 97cb288 + 14300c2 commit ac17595Copy full SHA for ac17595
src/utils/datadog.ts
@@ -25,6 +25,7 @@ const getConfigValues = (is_production: boolean) => {
25
26
const initDatadog = (is_datadog_enabled: boolean) => {
27
if (!is_datadog_enabled) return;
28
+ console.log('current environment: ', process.env.NODE_ENV);
29
if (process.env.NODE_ENV === 'production' || process.env.NODE_ENV === 'staging') {
30
const is_production = process.env.NODE_ENV === 'production';
31
const {
0 commit comments