From d63d7c564022c4e273adaafc0dec2fb182694bc9 Mon Sep 17 00:00:00 2001 From: Neil Alexander Date: Tue, 29 Sep 2020 17:08:47 +0100 Subject: [PATCH] Tweak log level of a fairly common log line --- federationsender/queue/destinationqueue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/federationsender/queue/destinationqueue.go b/federationsender/queue/destinationqueue.go index 12a04d4b..e87f0063 100644 --- a/federationsender/queue/destinationqueue.go +++ b/federationsender/queue/destinationqueue.go @@ -224,7 +224,7 @@ func (oq *destinationQueue) backgroundSend() { // The worker is idle so stop the goroutine. It'll get // restarted automatically the next time we have an event to // send. - log.Debugf("Queue %q has been idle for %s, going to sleep", oq.destination, queueIdleTimeout) + log.Tracef("Queue %q has been idle for %s, going to sleep", oq.destination, queueIdleTimeout) return }