aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Ruane <ruane.jb@gmail.com>2022-10-26 05:05:52 -0600
committerJeff Ruane <ruane.jb@gmail.com>2022-10-28 01:15:41 -0600
commitef97b89902f03d710f6111a1d8deaaa87d92a817 (patch)
tree761301e88929a98af7bbb9ba1a28cca69910cd45
parentf37bd15d472fdc7dd3d40cafaba9e8dfddd6b530 (diff)
downloadbitcoin-ef97b89902f03d710f6111a1d8deaaa87d92a817.tar.xz
Exclude rand from debug log
Currently, debug.log is spammed with messages from random.cpp when functional tests are run. These logs are not useful for debugging, and decrease the signal to noise ratio of the logs.
-rwxr-xr-xtest/functional/test_framework/test_node.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py
index 2367a9a8fa..83f9f253fd 100755
--- 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: