0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

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.
This commit is contained in:
Jeff Ruane 2022-10-26 05:05:52 -06:00
parent f37bd15d47
commit ef97b89902
No known key found for this signature in database
GPG key ID: B1F8F6FF1D06CAD3

View file

@ -102,6 +102,7 @@ class TestNode():
"-debug",
"-debugexclude=libevent",
"-debugexclude=leveldb",
"-debugexclude=rand",
"-uacomment=testnode%d" % i,
]
if use_valgrind: