From f8a843244debc0e4bf2c16844b6152d60f010988 Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Mon, 27 Sep 2021 17:53:55 +0300 Subject: [PATCH] Remove unused debug logging --- pkg/datasource/datasource.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/datasource/datasource.go b/pkg/datasource/datasource.go index 62a852d..f22c625 100644 --- a/pkg/datasource/datasource.go +++ b/pkg/datasource/datasource.go @@ -3,6 +3,7 @@ package datasource import ( "context" "errors" + "github.com/alexanderzobnin/grafana-zabbix/pkg/httpclient" "github.com/alexanderzobnin/grafana-zabbix/pkg/settings" "github.com/alexanderzobnin/grafana-zabbix/pkg/zabbix" @@ -103,7 +104,6 @@ func (ds *ZabbixDatasource) CheckHealth(ctx context.Context, req *backend.CheckH } func (ds *ZabbixDatasource) QueryData(ctx context.Context, req *backend.QueryDataRequest) (*backend.QueryDataResponse, error) { - ds.logger.Debug("QueryData()") qdr := backend.NewQueryDataResponse() zabbixDS, err := ds.getDSInstance(req.PluginContext)