Created
October 25, 2022 19:38
-
-
Save LarryRuane/ab3013b8059f5cadc84972c07e3009fa to your computer and use it in GitHub Desktop.
exclude "rand" logging category to make functional test debug.log files easier to read
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/test/functional/test_framework/test_node.py | |
+++ b/test/functional/test_framework/test_node.py | |
@@ -102,6 +102,7 @@ class TestNode(): | |
"-debug", | |
"-debugexclude=libevent", | |
"-debugexclude=leveldb", | |
+ "-debugexclude=rand", | |
"-uacomment=testnode%d" % i, | |
] | |
if use_valgrind: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment