From b77c0a30d716e85eb9f3faafb45aa9003fb2381a Mon Sep 17 00:00:00 2001 From: Srevin Saju Date: Thu, 27 Aug 2020 18:38:51 +0300 Subject: [PATCH] stream scrcpy output to stdout and stderr --- guiscrcpy/launcher.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guiscrcpy/launcher.py b/guiscrcpy/launcher.py index c74d9f12..65d80d5f 100644 --- a/guiscrcpy/launcher.py +++ b/guiscrcpy/launcher.py @@ -1213,7 +1213,8 @@ def start_act(self): if not self.debug__no_scrcpy: # for debugging purposes, its important to not start scrcpy # every time - self.scrcpy.start(self.scrcpy.path, arguments_scrcpy) + self.scrcpy.start(arguments_scrcpy, stdout=sys.stdout, + stderr=sys.stderr) progress = self.progress(progress) # ====================================================================