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()