diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2021-02-04 12:25:31 +0000 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2021-02-04 12:25:31 +0000 |
commit | bd72ed50d426f6025004a2beb1372912ecf1d500 (patch) | |
tree | f66eeb3a62d52a8d4af0068b667c42b78e09a64d | |
parent | 6e44450cc9b541e5e79b7e601462fd3d3cf35fe5 (diff) |
Reduce log level of 'Failed to send transaction' log line, since quite often it is flooding logs for dead servers
-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 99b9e449..d9567eeb 100644 --- a/federationsender/queue/destinationqueue.go +++ b/federationsender/queue/destinationqueue.go @@ -444,7 +444,7 @@ func (oq *destinationQueue) nextTransaction( log.WithFields(log.Fields{ "destination": oq.destination, log.ErrorKey: err, - }).Infof("Failed to send transaction %q", t.TransactionID) + }).Debugf("Failed to send transaction %q", t.TransactionID) return false, 0, 0, err } } |