We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97cb288 commit 14300c2Copy full SHA for 14300c2
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