From 6d91d816a93a868192568afc632bee700d84f2ea Mon Sep 17 00:00:00 2001 From: "Johan T. Halseth" Date: Mon, 29 Oct 2018 05:52:09 +0100 Subject: [PATCH] lnd_test: remove log disabling hack --- lnd_test.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lnd_test.go b/lnd_test.go index 00506f8b1..7a3443b3c 100644 --- a/lnd_test.go +++ b/lnd_test.go @@ -27,7 +27,6 @@ import ( "github.com/btcsuite/btcd/integration/rpctest" "github.com/btcsuite/btcd/rpcclient" "github.com/btcsuite/btcd/wire" - "github.com/btcsuite/btclog" "github.com/btcsuite/btcutil" "github.com/davecgh/go-spew/spew" "github.com/go-errors/errors" @@ -12540,11 +12539,6 @@ func TestLightningNetworkDaemon(t *testing.T) { } }() - // Turn off the btcd rpc logging, otherwise it will lead to panic. - // TODO(andrew.shvv|roasbeef) Remove the hack after re-work the way the log - // rotator os work. - rpcclient.UseLogger(btclog.Disabled) - if err := btcdHarness.SetUp(true, 50); err != nil { ht.Fatalf("unable to set up mining node: %v", err) }