Demote wakeQueueIfEventsPending log line to debug

This just produces a lot of noise in the logs for no reason and it didn't
even say which queue was relevant.

Signed-off-by: Neil Alexander <git@neilalexander.dev>
This commit is contained in:
Neil Alexander 2025-01-28 10:46:04 +00:00
parent 1b8b88cd3d
commit eb77983ea3
No known key found for this signature in database
GPG key ID: A02A2019A2BB0944

View file

@ -147,7 +147,7 @@ func (oq *destinationQueue) wakeQueueIfEventsPending(forceWakeup bool) {
// or if forceWakeup is true. Otherwise there is no reason to start the
// queue goroutine and waste resources.
if forceWakeup || eventsPending() {
logrus.Info("Starting queue due to pending events or forceWakeup")
logrus.Debugf("Starting queue %q -> %q due to pending events or forceWakeup", oq.origin, oq.destination)
oq.wakeQueueAndNotify()
}
}