Make starter_test failure more verbose

It's failing at times, and verbosity would help a ton here in debugging
what is going wrong.

Change-Id: I59846cbfda97fc607f93effc79b8b9e23f8fa017
Signed-off-by: Austin Schuh <austin.linux@gmail.com>
diff --git a/aos/starter/starter_test.cc b/aos/starter/starter_test.cc
index 033b3c7..d489f8f 100644
--- a/aos/starter/starter_test.cc
+++ b/aos/starter/starter_test.cc
@@ -305,7 +305,8 @@
     if (pong_app_status->has_state() &&
         pong_app_status->state() == aos::starter::State::RUNNING) {
       ASSERT_TRUE(pong_app_status->has_process_info());
-      ASSERT_EQ("pong", pong_app_status->process_info()->name()->string_view());
+      ASSERT_EQ("pong", pong_app_status->process_info()->name()->string_view())
+          << aos::FlatbufferToJson(&status);
       ASSERT_EQ(pong_app_status->pid(), pong_app_status->process_info()->pid());
       ASSERT_LT(0.0, pong_app_status->process_info()->cpu_usage());
       watcher_loop.Exit();