From db12aa285be36d530d32fd88d9afeaef5029fbd6 Mon Sep 17 00:00:00 2001 From: Adam Warner Date: Thu, 6 Nov 2025 19:39:11 +0000 Subject: [PATCH] Be more explicit in the timeout error message Co-authored-by: Dan Schaper Signed-off-by: Adam Warner --- src/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/start.sh b/src/start.sh index a0e42f2..17d3103 100644 --- a/src/start.sh +++ b/src/start.sh @@ -79,7 +79,7 @@ start() { # Wait for FTL to start by monitoring the FTL log file for the "FTL started" line if ! timeout 30 tail -F -c +$((startFrom + 1)) -- "${FTLlogFile}" | grep -q '########## FTL started'; then - echo " [!] ERROR: FTL failed to start within 30 seconds, stopping container" + echo " [!] ERROR: Did not find 'FTL started' message in ${FTLlogFile} in 30 seconds, stopping container" exit 1 fi