From 172e915074166a203fa4904c122625b3067cbbcc Mon Sep 17 00:00:00 2001 From: Ashesh Vidyut <134911583+absolutelightning@users.noreply.github.com> Date: Mon, 11 Sep 2023 19:54:50 +0530 Subject: [PATCH] Added logs for debugging (#18740) * added logs * added echo * removed pull request --- test/integration/connect/envoy/run-tests.windows.sh | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/test/integration/connect/envoy/run-tests.windows.sh b/test/integration/connect/envoy/run-tests.windows.sh index c4dcff6ce4..99f8abd5b9 100644 --- a/test/integration/connect/envoy/run-tests.windows.sh +++ b/test/integration/connect/envoy/run-tests.windows.sh @@ -604,9 +604,14 @@ function suite_teardown { } function run_containers { - for name in $@ ; do - run_container $name - done + echo "Starting Containers" + echo $@ + for name in $@ ; do + echo "Starting container" + echo $name + run_container $name + done + echo "Done running containers" } function run_container {