From 1f1a6a5d898a7b373663a1ea9ab464fa4395f42c Mon Sep 17 00:00:00 2001 From: Josh XT Date: Thu, 27 Jun 2024 17:12:29 -0400 Subject: [PATCH] Add message to look at docker for logs --- start.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/start.py b/start.py index 052a2d71a618..78d4c337c3db 100644 --- a/start.py +++ b/start.py @@ -151,7 +151,11 @@ def run_shell_command(command): ) while True: - output = process.stdout.readline() + try: + output = process.stdout.readline() + except: + print("View the logs in docker with 'docker-compose logs'") + break if output == "" and process.poll() is not None: break if output: