forked from LBRYCommunity/lbry-sdk
Debugging
This commit is contained in:
parent
df71132957
commit
3436965b33
1 changed files with 4 additions and 0 deletions
|
@ -473,6 +473,10 @@ class HubProcess(asyncio.SubprocessProtocol):
|
||||||
raise SystemError(data.decode())
|
raise SystemError(data.decode())
|
||||||
if b'listening on' in data:
|
if b'listening on' in data:
|
||||||
self.ready.set()
|
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):
|
def process_exited(self):
|
||||||
self.stopped.set()
|
self.stopped.set()
|
||||||
|
|
Loading…
Reference in a new issue