From 3b56e90a13a695c2142387728bb661037e520183 Mon Sep 17 00:00:00 2001 From: Greg Sanders Date: Thu, 15 Dec 2022 16:53:33 -0500 Subject: [PATCH] Turn on logging for key topics in bitcoind for black box tests --- contrib/pyln-testing/pyln/testing/utils.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/contrib/pyln-testing/pyln/testing/utils.py b/contrib/pyln-testing/pyln/testing/utils.py index 259869e49..0e1f653de 100644 --- a/contrib/pyln-testing/pyln/testing/utils.py +++ b/contrib/pyln-testing/pyln/testing/utils.py @@ -413,7 +413,11 @@ class BitcoinD(TailableProc): '-nolisten', '-txindex', '-nowallet', - '-addresstype=bech32' + '-addresstype=bech32', + '-debug=mempool', + '-debug=mempoolrej', + '-debug=rpc', + '-debug=validation', ] # For up to and including 0.16.1, this needs to be in main section. BITCOIND_CONFIG['rpcport'] = rpcport