Live: logging cleanup (#34455)

This commit is contained in:
Ryan McKinley 2021-05-19 22:57:49 -07:00 committed by GitHub
parent 21d6f02dd3
commit 2f58cc860c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View File

@ -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);
};

View File

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