diff options
author | John Newbery <john@johnnewbery.com> | 2017-11-22 11:47:37 -0500 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-01-29 09:48:17 -0500 |
commit | cc046f66a7f3bb8d615998ebce38468d90ad8681 (patch) | |
tree | 497901cb2be54d90aa404a281000f301a40b0af6 /test | |
parent | 6378e5c51414b1f084fe01d31003fe8fd66b9501 (diff) |
[tests] Reduce NodeConn connection logging from info to debug
Diffstat (limited to 'test')
-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 fe14591139..bdc12de93e 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)) |