Remove some letters of verbose log
am: ea31cbea93

Change-Id: Ia1237171d4bcb5c5c86851883f58bbdd1cc7ac22
diff --git a/cmds/incidentd/src/FdBuffer.cpp b/cmds/incidentd/src/FdBuffer.cpp
index 86c2e20..0885b134 100644
--- a/cmds/incidentd/src/FdBuffer.cpp
+++ b/cmds/incidentd/src/FdBuffer.cpp
@@ -238,11 +238,11 @@
         ssize_t amt = ::read(fromFd.get(), mBuffer.writeBuffer(), mBuffer.currentToWrite());
         if (amt < 0) {
             if (!(errno == EAGAIN || errno == EWOULDBLOCK)) {
-                VLOG("Fail to read fromFd.get() %d: %s", fromFd.get(), strerror(errno));
+                VLOG("Fail to read fromFd %d: %s", fromFd.get(), strerror(errno));
                 return -errno;
             }  // otherwise just continue
         } else if (amt == 0) {
-            VLOG("Reached EOF of fromFd.get() %d", fromFd.get());
+            VLOG("Reached EOF of fromFd %d", fromFd.get());
             break;
         } else {
             mBuffer.wp()->move(amt);