tools: update status debug message

Update the verification commit status debug message to not specify that
it's the verification blob specifically as this method is used for both
verification and update.

Signed-off-by: Patrick Venture <venture@google.com>
Change-Id: I0ee89a5e8f7eae2533ab89db12032b33d1c25ec1
diff --git a/tools/updater.cpp b/tools/updater.cpp
index 87964a7..ca9dadb 100644
--- a/tools/updater.cpp
+++ b/tools/updater.cpp
@@ -199,9 +199,8 @@
                             std::string(b.what()));
     }
 
-    std::fprintf(
-        stderr,
-        "Committing to verification file to trigger verification service\n");
+    std::fprintf(stderr, "Committing to %s to trigger service\n",
+                 target.c_str());
 
     try
     {
@@ -213,17 +212,17 @@
                             std::string(b.what()));
     }
 
-    std::fprintf(stderr,
-                 "Calling stat on verification session to check status\n");
+    std::fprintf(stderr, "Calling stat on %s session to check status\n",
+                 target.c_str());
 
     if (pollStatus(session, blob))
     {
-        std::fprintf(stderr, "Verification returned success\n");
+        std::fprintf(stderr, "Returned success\n");
         success = true;
     }
     else
     {
-        std::fprintf(stderr, "Verification returned non-success (could still "
+        std::fprintf(stderr, "Returned non-success (could still "
                              "be running (unlikely))\n");
     }