aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_framework
diff options
context:
space:
mode:
authorklementtan <klementtan@gmail.com>2022-08-18 13:37:25 +0200
committerJon Atack <jon@atack.com>2022-08-20 11:30:51 +0200
commit8fe3457dbb4146952b92fb9509bbe4e97dc1f05b (patch)
tree24617cf6f48b6a1e68b3ee605d5af56caf27be3d /test/functional/test_framework
parentc2797cfc602c5cdd899a7c11b37bb5711cebff38 (diff)
downloadbitcoin-8fe3457dbb4146952b92fb9509bbe4e97dc1f05b.tar.xz
Update LogAcceptCategory() and unit tests with log severity levels
Co-authored-by: "Jon Atack <jon@atack.com>"
Diffstat (limited to 'test/functional/test_framework')
-rwxr-xr-xtest/functional/test_framework/test_node.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py
index 03f6c8adea..e28d458f69 100755
--- a/test/functional/test_framework/test_node.py
+++ b/test/functional/test_framework/test_node.py
@@ -118,6 +118,8 @@ class TestNode():
self.args.append("-logthreadnames")
if self.version_is_at_least(219900):
self.args.append("-logsourcelocations")
+ if self.version_is_at_least(239000):
+ self.args.append("-loglevel=debug")
self.cli = TestNodeCLI(bitcoin_cli, self.datadir)
self.use_cli = use_cli