From 15ee4396f424fed7a4706f3c3b2e7b61c456c4b9 Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Fri, 16 Jun 2023 13:28:41 -0400 Subject: [PATCH] logging level tweaks --- controller/metrics/amqpSource.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controller/metrics/amqpSource.go b/controller/metrics/amqpSource.go index 75fd18ff..811f038d 100644 --- a/controller/metrics/amqpSource.go +++ b/controller/metrics/amqpSource.go @@ -94,7 +94,7 @@ mainLoop: case event, ok := <-s.msgs: if !ok { - logrus.Warn("selecting on msg !ok") + logrus.Debug("selecting on msg !ok") break msgLoop } if event.Body != nil { @@ -103,7 +103,7 @@ mainLoop: msg: event, } } else { - logrus.Warn("event body was nil!") + logrus.Debug("event body was nil!") break msgLoop } }