From 2e58656a7059c05f2d5d4ccced07f041fe56285c Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 5 Aug 2020 17:19:45 +0200 Subject: [PATCH] fix: forward driver stderr to main stderr --- playwright/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright/main.py b/playwright/main.py index 6a8451c0a..4726ef4bf 100644 --- a/playwright/main.py +++ b/playwright/main.py @@ -49,7 +49,7 @@ async def run_driver_async() -> Connection: str(driver_executable), stdin=asyncio.subprocess.PIPE, stdout=asyncio.subprocess.PIPE, - stderr=asyncio.subprocess.PIPE, + stderr=sys.stderr, limit=32768, ) assert proc.stdout