From 1c25f787a1d5c63082f6e569dfd2bcd97c11945a Mon Sep 17 00:00:00 2001 From: Nicolas Rodriguez Date: Fri, 18 Oct 2024 18:01:31 +0200 Subject: [PATCH] Fix wrong logging level Closes https://github.com/prometheus-community/pgbouncer_exporter/issues/175 Signed-off-by: Nicolas Rodriguez --- collector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collector.go b/collector.go index a7f9fd6..fb527dd 100644 --- a/collector.go +++ b/collector.go @@ -469,7 +469,7 @@ func (e *Exporter) Describe(ch chan<- *prometheus.Desc) { // Collect implements prometheus.Collector. func (e *Exporter) Collect(ch chan<- prometheus.Metric) { - e.logger.Error("Starting scrape") + e.logger.Info("Starting scrape") var up = 1.0