From 88188d63c8ddba25e78a37f0c156dd32b053cd7b Mon Sep 17 00:00:00 2001 From: "Grot (@grafanabot)" <43478413+grafanabot@users.noreply.github.com> Date: Tue, 14 Jun 2022 08:27:11 -0400 Subject: [PATCH] rm debug log when publishing live message (#50774) (#50779) (cherry picked from commit c581f6d9455d5c21684b5759ac57cb7a3c6be573) Co-authored-by: Alexander Emelin --- pkg/services/live/live.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/services/live/live.go b/pkg/services/live/live.go index 321f701b775..d807cfadd44 100644 --- a/pkg/services/live/live.go +++ b/pkg/services/live/live.go @@ -940,7 +940,6 @@ func (g *GrafanaLive) handleDatasourceScope(ctx context.Context, user *models.Si // Publish sends the data to the channel without checking permissions etc. func (g *GrafanaLive) Publish(orgID int64, channel string, data []byte) error { - logger.Debug("publish into channel", "channel", channel, "orgId", orgID, "data", string(data)) _, err := g.node.Publish(orgchannel.PrependOrgID(orgID, channel), data) return err }