diff --git a/src/source/Ice/Network.c b/src/source/Ice/Network.c index c3d544290e..b5ec9b8722 100644 --- a/src/source/Ice/Network.c +++ b/src/source/Ice/Network.c @@ -166,11 +166,11 @@ STATUS createSocket(KVS_IP_FAMILY_TYPE familyType, KVS_SOCKET_PROTOCOL protocol, optionValue = 1; if (setsockopt(sockfd, SOL_SOCKET, NO_SIGNAL, &optionValue, SIZEOF(optionValue)) < 0) { - DLOGD("setsockopt() failed with errno %s", getErrorString(getErrorCode())); + DLOGD("setsockopt() NO_SIGNAL failed with errno %s", getErrorString(getErrorCode())); } if (sendBufSize > 0 && setsockopt(sockfd, SOL_SOCKET, SO_SNDBUF, &sendBufSize, SIZEOF(sendBufSize)) < 0) { - DLOGW("setsockopt() failed with errno %s", getErrorString(getErrorCode())); + DLOGW("setsockopt() SO_SNDBUF failed with errno %s", getErrorString(getErrorCode())); CHK(FALSE, STATUS_SOCKET_SET_SEND_BUFFER_SIZE_FAILED); }