Skip to content
Snippets Groups Projects
Unverified Commit 6e71432b authored by Aleksandr Lesnenko's avatar Aleksandr Lesnenko Committed by GitHub
Browse files

add chart logging own env var (#42334)

parent 4443033c
No related branches found
No related tags found
No related merge requests found
......@@ -8,3 +8,7 @@ export const isTest = process.env.NODE_ENV === "test";
// eslint-disable-next-line no-undef
export const shouldLogAnalytics = process.env.MB_LOG_ANALYTICS === "true";
export const isChartsDebugLoggingEnabled =
// eslint-disable-next-line no-undef
process.env.MB_LOG_CHARTS_DEBUG === "true";
......@@ -2,7 +2,7 @@
import type { EChartsOption } from "echarts";
import { useEffect } from "react";
import { isProduction } from "metabase/env";
import { isChartsDebugLoggingEnabled } from "metabase/env";
import type { BaseCartesianChartModel } from "metabase/visualizations/echarts/cartesian/model/types";
import type { RawSeries } from "metabase-types/api";
......@@ -18,7 +18,7 @@ export function useChartDebug({
chartModel: BaseCartesianChartModel;
}) {
useEffect(() => {
if (!isQueryBuilder || isProduction) {
if (!isQueryBuilder || !isChartsDebugLoggingEnabled) {
return;
}
console.log("-------------- ECHARTS DEBUG INFO START --------------");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment