mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 06:41:44 +01:00
Revert "Put bitcoind logging in stdout for pytest"
This reverts commit 1037bf3c43
.
(It broke elementsd: we no longer see "Done loading")
This commit is contained in:
parent
d3e33cfd14
commit
a7786ca742
1 changed files with 1 additions and 2 deletions
|
@ -406,7 +406,6 @@ class BitcoinD(TailableProc):
|
|||
self.cmd_line = [
|
||||
'bitcoind',
|
||||
'-datadir={}'.format(bitcoin_dir),
|
||||
'-debuglogfile={}'.format(os.path.join(bitcoin_dir, "log")), # So it can be put to stdout
|
||||
'-printtoconsole',
|
||||
'-server',
|
||||
'-logtimestamps',
|
||||
|
@ -434,7 +433,7 @@ class BitcoinD(TailableProc):
|
|||
drop_unused_port(self.reserved_rpcport)
|
||||
|
||||
def start(self):
|
||||
TailableProc.start(self, stdout_redir=False)
|
||||
TailableProc.start(self)
|
||||
self.wait_for_log("Done loading", timeout=TIMEOUT)
|
||||
|
||||
logging.info("BitcoinD started")
|
||||
|
|
Loading…
Add table
Reference in a new issue