From e541ec72b7672a2e5ef036d6e5663b34f178ecbc Mon Sep 17 00:00:00 2001 From: "Anderson, Craig (ca846m)" Date: Mon, 26 Aug 2019 13:53:46 -0700 Subject: [PATCH] Fix gate script trackback printout Change-Id: I9111cddf89ad57641b163309e5d2202a44cd36eb --- tools/gate/scripts/020-test-divingbell.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/gate/scripts/020-test-divingbell.sh b/tools/gate/scripts/020-test-divingbell.sh index 28a17f0..2e16707 100755 --- a/tools/gate/scripts/020-test-divingbell.sh +++ b/tools/gate/scripts/020-test-divingbell.sh @@ -5,7 +5,7 @@ # Print traceback when error occurs traceback(){ for ((i=0;i<${#FUNCNAME[@]}-1;i++)); do - log.TRACE $(caller $i) + echo $(caller $i) done exit 1 }