examples: make test script output easier to read (#3711)

diff --git a/examples/examples_test.sh b/examples/examples_test.sh
index a382b18..85e2958 100755
--- a/examples/examples_test.sh
+++ b/examples/examples_test.sh
@@ -15,7 +15,7 @@
 #  limitations under the License.
 #
 
-set +e -x
+set +e
 
 export TMPDIR=$(mktemp -d)
 trap "rm -rf ${TMPDIR}" EXIT
@@ -154,6 +154,6 @@
             pass "client log contains expected output: ${EXPECTED_CLIENT_OUTPUT[$example]}"
         fi
     fi
-
     clean
+    echo ""
 done