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
{{ message }}
This repository was archived by the owner on Oct 13, 2025. It is now read-only.
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())