diff options
| author | John Newbery <[email protected]> | 2017-11-22 11:47:37 -0500 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2018-01-29 09:48:17 -0500 |
| commit | cc046f66a7f3bb8d615998ebce38468d90ad8681 (patch) | |
| tree | 497901cb2be54d90aa404a281000f301a40b0af6 | |
| parent | Merge #11711: bitcoin_qt.m4: Minor fixes and clean-ups. (diff) | |
| download | discoin-cc046f66a7f3bb8d615998ebce38468d90ad8681.tar.xz discoin-cc046f66a7f3bb8d615998ebce38468d90ad8681.zip | |
[tests] Reduce NodeConn connection logging from info to debug
| -rwxr-xr-x | test/functional/test_framework/mininode.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/test_framework/mininode.py b/test/functional/test_framework/mininode.py index fe1459113..bdc12de93 100755 --- a/test/functional/test_framework/mininode.py +++ b/test/functional/test_framework/mininode.py @@ -86,7 +86,7 @@ class P2PConnection(asyncore.dispatcher): self.network = net self.disconnect = False - logger.info('Connecting to Bitcoin Node: %s:%d' % (self.dstaddr, self.dstport)) + logger.debug('Connecting to Bitcoin Node: %s:%d' % (self.dstaddr, self.dstport)) try: self.connect((dstaddr, dstport)) |