From abe45790f3cea55937e9793ca40a6a398e8d2726 Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Tue, 10 Aug 2021 14:14:28 +0300 Subject: [PATCH] Remove unused debug logging --- pkg/zabbix/methods.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/zabbix/methods.go b/pkg/zabbix/methods.go index 4f05395..4c40e8e 100644 --- a/pkg/zabbix/methods.go +++ b/pkg/zabbix/methods.go @@ -93,8 +93,6 @@ func (ds *Zabbix) GetItems(ctx context.Context, groupFilter string, hostFilter s apps, err := ds.GetApps(ctx, groupFilter, hostFilter, appFilter) // Apps not supported in Zabbix 5.4 and higher isZabbix54orHigher := isAppMethodNotFoundError(err) - ds.logger.Debug("isZabbix54orHigher", "value", isZabbix54orHigher) - ds.logger.Debug("apps", "apps", apps) if isZabbix54orHigher { apps = []Application{} } else if err != nil {