diff options
author | Erik Johnston <erikj@jki.re> | 2017-01-18 11:07:51 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-18 11:07:51 +0000 |
commit | fc7cae8aa32a6c094caca4b1ddaf52d8f49e91b2 (patch) | |
tree | 097742f6ba5785b0b9369e7eecd021bead7d13a2 /synapse | |
parent | Merge pull request #1822 from matrix-org/erikj/statE_logging (diff) | |
parent | Lower the not retrying host log line to debug (diff) | |
download | synapse-fc7cae8aa32a6c094caca4b1ddaf52d8f49e91b2.tar.xz |
Merge pull request #1824 from matrix-org/erikj/retry_host_log
Lower the not retrying host log line to debug
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/federation/transaction_queue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/transaction_queue.py b/synapse/federation/transaction_queue.py index 7db7b806dc..6b3a7abb9e 100644 --- a/synapse/federation/transaction_queue.py +++ b/synapse/federation/transaction_queue.py @@ -362,7 +362,7 @@ class TransactionQueue(object): if not success: break except NotRetryingDestination: - logger.info( + logger.debug( "TX [%s] not ready for retry yet - " "dropping transaction for now", destination, |