From c5377ffbbbdbc74f50bbabd1e6efd57b3cf34899 Mon Sep 17 00:00:00 2001 From: Suhas Daftuar Date: Thu, 31 Oct 2019 13:54:07 -0400 Subject: [PATCH] [qa] Add shrinkdebugfile=0 to regtest bitcoin.conf This helps avoid accidentally truncating the debug.log while manually debugging. --- test/functional/test_framework/util.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/functional/test_framework/util.py b/test/functional/test_framework/util.py index cde99a2219..4d7967273a 100644 --- a/test/functional/test_framework/util.py +++ b/test/functional/test_framework/util.py @@ -316,6 +316,7 @@ def initialize_datadir(dirname, n, chain): f.write("listenonion=0\n") f.write("printtoconsole=0\n") f.write("upnp=0\n") + f.write("shrinkdebugfile=0\n") os.makedirs(os.path.join(datadir, 'stderr'), exist_ok=True) os.makedirs(os.path.join(datadir, 'stdout'), exist_ok=True) return datadir