TBR: playground: Enable verbose logging in playground tests.

Change-Id: Ifaba7bc2a5855e19c59bd5d194d12de42fa1c7f6
diff --git a/client/test.sh b/client/test.sh
index 73c8e1e..43dddcd 100755
--- a/client/test.sh
+++ b/client/test.sh
@@ -25,7 +25,7 @@
 
   for d in $EXAMPLE_DIRS; do
     echo -e "\n\n>>>>> Test ${d}\n\n"
-    test_pg_example "${d}" "-v=false" || shell_test::fail "${d}: failed to run"
+    test_pg_example "${d}" "-v=true" || shell_test::fail "${d}: failed to run"
     # TODO(sadovsky): Make this "clean exit" check more robust.
     grep -q "\"Exited cleanly.\"" builder.out || shell_test::fail "${d}: did not exit cleanly"
     rm -f builder.out
diff --git a/test.sh b/test.sh
index 8085943..6dd0419 100755
--- a/test.sh
+++ b/test.sh
@@ -18,7 +18,7 @@
     cp "${TESTDATA_DIR}/${f}" "${fdir}/"
   done
 
-  test_pg_example "${PGBUNDLE_DIR}" "-v=false --includeV23Env=true"
+  test_pg_example "${PGBUNDLE_DIR}" "-v=true --includeV23Env=true"
 }
 
 main() {