forked from LBRYCommunity/lbry-sdk
Debugging
This commit is contained in:
parent
5c8329e951
commit
618f739049
1 changed files with 4 additions and 0 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue