Reduce log level of 'Failed to send transaction' log line, since quite often it is flooding logs for dead servers

main
Neil Alexander 2021-02-04 12:25:31 +00:00
parent 6e44450cc9
commit bd72ed50d4
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944
1 changed files with 1 additions and 1 deletions

View File

@ -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
}
}