diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2020-09-29 17:08:47 +0100 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2020-09-29 17:08:47 +0100 |
commit | d63d7c564022c4e273adaafc0dec2fb182694bc9 (patch) | |
tree | a8a03ea67a897bb1c6c85f723107eb72da299f16 /federationsender | |
parent | f290e92a34c67e4d9673629810ac8f0f85b28b7c (diff) |
Tweak log level of a fairly common log line
Diffstat (limited to 'federationsender')
-rw-r--r-- | federationsender/queue/destinationqueue.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |