Skip to content

Commit

Permalink
Live: logging cleanup (grafana#34455)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryantxu authored May 20, 2021
1 parent 21d6f02 commit 2f58cc8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions public/app/features/live/live.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export class QueryEditor extends PureComponent<Props, State> {
.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<string, Array<SelectableValue<string>>> = {};
Expand Down

0 comments on commit 2f58cc8

Please sign in to comment.