change log type for EAGAIN error
authorgreatim <jaewon81.lim@samsung.com>
Mon, 19 Dec 2016 09:14:19 +0000 (18:14 +0900)
committergreatim <jaewon81.lim@samsung.com>
Mon, 19 Dec 2016 09:14:19 +0000 (18:14 +0900)
change log type (error -> info) for EAGAIN error
 - EAGAIN means there is no other data to read or write (not error)

Change-Id: Ibf5abf366413f7f324f04238eb43739bb78c82b8
Signed-off-by: greatim <jaewon81.lim@samsung.com>
src/utils_windows.c

index 151fd064ad1cff24a5c29911069fb1386c3d2ccd..42f628bd3e5dcd72e4ac798daf81dbb8e4b273fb 100755 (executable)
@@ -355,7 +355,7 @@ static int check_socket_err(int result) {
 
        if(err == WSAEWOULDBLOCK) {
                errno = EAGAIN;
-               LOG_ERROR("socket error EAGAIN\n");
+               LOG_INFO("socket error EAGAIN\n");
        }
        else if(err == WSAEINTR) {
                errno = EINTR;