From f3b8c912b4a0dd1338f4ca0a2360e4a85eaf26c0 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 17 Oct 2017 19:19:58 -0700 Subject: [PATCH] test: bump up logging level for integration test nodes to debug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In light of the recent commit which added a new set of logging in the debug verbosity and the commit which added exporting logs from test execution to Travis, we’ve now bumped up the logging level to debug. With this new set of logging infrastructure, we should be able to quickly debug any issues or flakes in the integration tests running on CI. --- networktest.go | 1 + 1 file changed, 1 insertion(+) diff --git a/networktest.go b/networktest.go index f4ab77e8f..39badd38e 100644 --- a/networktest.go +++ b/networktest.go @@ -172,6 +172,7 @@ func (l *lightningNode) genArgs() []string { args = append(args, "--bitcoin.active") args = append(args, "--bitcoin.simnet") args = append(args, "--nobootstrap") + args = append(args, "--debuglevel=debug") args = append(args, fmt.Sprintf("--bitcoin.rpchost=%v", l.cfg.Bitcoin.RPCHost)) args = append(args, fmt.Sprintf("--bitcoin.rpcuser=%v", l.cfg.Bitcoin.RPCUser)) args = append(args, fmt.Sprintf("--bitcoin.rpcpass=%v", l.cfg.Bitcoin.RPCPass))