script/test/utils.sh: readiness_check: print daemon log

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
This commit is contained in:
Akihiro Suda 2024-02-08 18:22:51 +09:00
parent b87d78f456
commit 83ad4367d1
No known key found for this signature in database
GPG Key ID: 49524C6F9F638F1A

View File

@ -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
}