From 83ad4367d1bdebc9e6085fe6c667a1676942e9fd Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 8 Feb 2024 18:22:51 +0900 Subject: [PATCH] script/test/utils.sh: readiness_check: print daemon log Signed-off-by: Akihiro Suda --- script/test/utils.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/script/test/utils.sh b/script/test/utils.sh index 619d434b9..aa7477299 100755 --- a/script/test/utils.sh +++ b/script/test/utils.sh @@ -348,4 +348,8 @@ readiness_check() { echo "$attempt_num attempt \"$command\"! Trying again in $attempt_num seconds..." sleep $(( attempt_num++ )) done + set -x + cat "${report_dir}/containerd.log" + cat "${config_file}" + set +x }