Browse Source

Added logs for debugging (#18740)

* added logs

* added echo

* removed pull request
pull/18742/head
Ashesh Vidyut 1 year ago committed by GitHub
parent
commit
172e915074
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      test/integration/connect/envoy/run-tests.windows.sh

11
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 {

Loading…
Cancel
Save