You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All the information read from the thread should be logged
def read(self, process):
while not self.stop_thread.is_set():
output = process.stdout.readline()
#TODO: We should add the logic to record the log info via logger instead of using print
print(output.strip())
All the information read from the thread should be logged
def read(self, process):
while not self.stop_thread.is_set():
output = process.stdout.readline()
#TODO: We should add the logic to record the log info via logger instead of using print
print(output.strip())
https://github.com/openthread/silk/silk/utils/process.py#L63
The text was updated successfully, but these errors were encountered: