mirror of
https://github.com/matrix-org/dendrite
synced 2024-12-14 04:33:51 +01:00
Reduce log level of 'Failed to send transaction' log line, since quite often it is flooding logs for dead servers
This commit is contained in:
parent
6e44450cc9
commit
bd72ed50d4
1 changed files with 1 additions and 1 deletions
|
@ -444,7 +444,7 @@ func (oq *destinationQueue) nextTransaction(
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"destination": oq.destination,
|
"destination": oq.destination,
|
||||||
log.ErrorKey: err,
|
log.ErrorKey: err,
|
||||||
}).Infof("Failed to send transaction %q", t.TransactionID)
|
}).Debugf("Failed to send transaction %q", t.TransactionID)
|
||||||
return false, 0, 0, err
|
return false, 0, 0, err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue