diff options
author | John Newbery <john@johnnewbery.com> | 2017-03-07 18:46:17 -0500 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-03-09 09:26:48 -0500 |
commit | 64c080051b932b3e53ece7638f199e48d0ad16c8 (patch) | |
tree | 87dbf2ccfa73d4650556919e92108033b54fc9a7 /qa/rpc-tests/p2p-leaktests.py | |
parent | 38ad281b2ad526f4aeef9445c1aa3715d692d861 (diff) |
Use logging in individual tests
Diffstat (limited to 'qa/rpc-tests/p2p-leaktests.py')
-rwxr-xr-x | qa/rpc-tests/p2p-leaktests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/p2p-leaktests.py b/qa/rpc-tests/p2p-leaktests.py index c86f6257c9..3a843197fb 100755 --- a/qa/rpc-tests/p2p-leaktests.py +++ b/qa/rpc-tests/p2p-leaktests.py @@ -32,7 +32,7 @@ class CLazyNode(NodeConnCB): def bad_message(self, message): self.unexpected_msg = True - print("should not have received message: %s" % message.command) + self.log.info("should not have received message: %s" % message.command) def on_open(self, conn): self.connected = True |