From 3436965b339528d01b22dd73180fa252bc86d4a9 Mon Sep 17 00:00:00 2001 From: Jeffrey Picard Date: Fri, 3 Dec 2021 15:51:54 -0500 Subject: [PATCH] Debugging --- lbry/wallet/orchstr8/node.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lbry/wallet/orchstr8/node.py b/lbry/wallet/orchstr8/node.py index 8bf1ac83a..572331629 100644 --- a/lbry/wallet/orchstr8/node.py +++ b/lbry/wallet/orchstr8/node.py @@ -473,6 +473,10 @@ class HubProcess(asyncio.SubprocessProtocol): raise SystemError(data.decode()) if b'listening on' in data: self.ready.set() + str_lines = str(data.decode()).split("\n") + for line in str_lines: + if 'releaseTime' in line: + print(line) def process_exited(self): self.stopped.set()