Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8700c434 authored by Yi Jin's avatar Yi Jin Committed by android-build-merger
Browse files

Remove some letters of verbose log

am: ea31cbea

Change-Id: Ia1237171d4bcb5c5c86851883f58bbdd1cc7ac22
parents 85d3cc02 ea31cbea
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);