From 2f58cc860c0adf8cafad9de700c7fb198c291635 Mon Sep 17 00:00:00 2001 From: Ryan McKinley Date: Wed, 19 May 2021 22:57:49 -0700 Subject: [PATCH] Live: logging cleanup (#34455) --- public/app/features/live/live.ts | 2 -- .../app/plugins/datasource/grafana/components/QueryEditor.tsx | 1 - 2 files changed, 3 deletions(-) diff --git a/public/app/features/live/live.ts b/public/app/features/live/live.ts index 267d3065211..261d6b041dc 100644 --- a/public/app/features/live/live.ts +++ b/public/app/features/live/live.ts @@ -95,12 +95,10 @@ export class CentrifugeSrv implements GrafanaLiveSrv { //---------------------------------------------------------- onConnect = (context: any) => { - console.log('CONNECT', context); this.connectionState.next(true); }; onDisconnect = (context: any) => { - console.log('onDisconnect', context); this.connectionState.next(false); }; diff --git a/public/app/plugins/datasource/grafana/components/QueryEditor.tsx b/public/app/plugins/datasource/grafana/components/QueryEditor.tsx index 17c1d79adcc..9ee6a1c634a 100644 --- a/public/app/plugins/datasource/grafana/components/QueryEditor.tsx +++ b/public/app/plugins/datasource/grafana/components/QueryEditor.tsx @@ -37,7 +37,6 @@ export class QueryEditor extends PureComponent { .fetch({ url: 'api/live/list' }) .subscribe({ next: (v: any) => { - console.log('GOT', v); const channelInfo = v.data?.channels as any[]; if (channelInfo?.length) { const channelFields: Record>> = {};