diff --git a/testing/taskcluster/scripts/builder/hazard-analysis.sh b/testing/taskcluster/scripts/builder/hazard-analysis.sh
index 043481271605..1a034edc8fcd 100755
--- a/testing/taskcluster/scripts/builder/hazard-analysis.sh
+++ b/testing/taskcluster/scripts/builder/hazard-analysis.sh
@@ -125,9 +125,11 @@ function check_hazards () {
NUM_UNSAFE=$(grep -c '^Function.*takes unsafe address of unrooted' "$1"/refs.txt)
NUM_UNNECESSARY=$(grep -c '^Function.* has unnecessary root' "$1"/unnecessary.txt)
+ set +x
echo "TinderboxPrint: rooting hazards
$NUM_HAZARDS"
echo "TinderboxPrint: unsafe references to unrooted GC pointers
$NUM_UNSAFE"
echo "TinderboxPrint: unnecessary roots
$NUM_UNSAFE"
+ set -x
if [ $NUM_HAZARDS -gt 0 ]; then
echo "TEST-UNEXPECTED-FAIL $NUM_HAZARDS hazards detected" >&2