Remove unnecesary log print 80/264580/1
authorHwankyu Jhun <h.jhun@samsung.com>
Mon, 27 Sep 2021 00:21:23 +0000 (09:21 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Mon, 27 Sep 2021 00:21:23 +0000 (09:21 +0900)
When EAGAIN error occurs, the rpc-port waits for POLLIN event.
If the timeout error occurs, the rpc-port prints the error log.

Change-Id: Icfaf163226072986e1d99e08a307ad2eb7ff83e0
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/port-internal.cc

index c7c5726..aaccee8 100644 (file)
@@ -140,7 +140,6 @@ int Port::Read(void* buf, unsigned int size) {
       return RPC_PORT_ERROR_IO_ERROR;
     } else if (nb == -1) {
       if (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK) {
-        LOGI("read_socket: %d errno, wait and retry ...", errno);
         bool can_read = false;
         while (!can_read && max_timeout > 0) {
           auto start = std::chrono::steady_clock::now();