diff options
author | Erik Johnston <erik@matrix.org> | 2017-01-17 17:20:39 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-01-17 17:20:39 +0000 |
commit | f878f64f4314dae6bd68b11ad1edbf0883f9bd8f (patch) | |
tree | 14ee0bf094ca465df6521d232d1f58739791b640 /synapse | |
parent | Fix typo in return type (diff) | |
download | synapse-f878f64f4314dae6bd68b11ad1edbf0883f9bd8f.tar.xz |
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, |