From ea31cbea935a20d9d290453c2ba2f8b8670e45ca Mon Sep 17 00:00:00 2001 From: Yi Jin Date: Mon, 2 Apr 2018 11:09:57 -0700 Subject: [PATCH] Remove some letters of verbose log Bug: 77333635 Test: N/A Change-Id: I94b288d070dfb372edf345d369d75bb3255f631b --- cmds/incidentd/src/FdBuffer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmds/incidentd/src/FdBuffer.cpp b/cmds/incidentd/src/FdBuffer.cpp index 86c2e206ef96..0885b13483c6 100644 --- a/cmds/incidentd/src/FdBuffer.cpp +++ b/cmds/incidentd/src/FdBuffer.cpp @@ -238,11 +238,11 @@ status_t FdBuffer::readProcessedDataInStream(int fd, unique_fd toFd, unique_fd f 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); -- 2.11.0