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>> = {};