mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Live: logging cleanup (#34455)
This commit is contained in:
parent
21d6f02dd3
commit
2f58cc860c
@ -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);
|
||||
};
|
||||
|
||||
|
@ -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>>> = {};
|
||||
|
Loading…
Reference in New Issue
Block a user