diff --git a/testing/coverage/coverall b/testing/coverage/coverall
index e6e85800e..9db519d06 100755
--- a/testing/coverage/coverall
+++ b/testing/coverage/coverall
@@ -45,7 +45,8 @@ cat ${COVERAGE_FILE} | sort -t: -k1 | grep -vw "testing" | grep -v ".pb.go" | gr
 echo "mode: set" | cat - ${COV_SORTED} > ${COVERAGE_FILE}
 
 if [ "$FAIL" -eq 0 ]; then
-  bash <(curl -s https://codecov.io/bash) -f ${COVERAGE_FILE} || echo "Codecov did not collect coverage reports."
+  echo "Uploading coverage datea to codecov."
+  bash <(curl -s https://codecov.io/bash) -f ${COVERAGE_FILE} -v || echo "Codecov did not collect coverage reports."
 fi
 
 exit $FAIL