sensord: remove the error log that is not error actually 00/63500/1
authorkibak.yoon <kibak.yoon@samsung.com>
Thu, 24 Mar 2016 08:25:12 +0000 (17:25 +0900)
committerkibak.yoon <kibak.yoon@samsung.com>
Thu, 24 Mar 2016 08:25:12 +0000 (17:25 +0900)
Change-Id: Ie4d83fbf60eb4d348164b2e7498855bc3eb1bbd1
Signed-off-by: kibak.yoon <kibak.yoon@samsung.com>
src/shared/csocket.cpp

index 451354a..9c33c5e 100644 (file)
@@ -190,12 +190,8 @@ ssize_t csocket::recv_for_seqpacket(void* buffer, size_t size) const
                }
     } while (err == EINTR);
 
-       if ((err == EAGAIN) || (err == EWOULDBLOCK)) {
-               _D("recv(%d, 0x%x, %d, 0x%x) = %d",
-                       m_sock_fd, buffer, size, m_recv_flags, len);
-               _ERRNO(errno);
+       if ((err == EAGAIN) || (err == EWOULDBLOCK))
                return 0;
-       }
 
        if (err) {
                _E("recv(%d, 0x%x, %d, 0x%x) = %d",