aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework/mininode.py
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-11-22 11:47:37 -0500
committerJohn Newbery <john@johnnewbery.com>2018-01-29 09:48:17 -0500
commitcc046f66a7f3bb8d615998ebce38468d90ad8681 (patch)
tree497901cb2be54d90aa404a281000f301a40b0af6 /test/functional/test_framework/mininode.py
parent6378e5c51414b1f084fe01d31003fe8fd66b9501 (diff)
downloadbitcoin-cc046f66a7f3bb8d615998ebce38468d90ad8681.tar.xz
[tests] Reduce NodeConn connection logging from info to debug
Diffstat (limited to 'test/functional/test_framework/mininode.py')
-rwxr-xr-xtest/functional/test_framework/mininode.py2
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))