Commit 3fcdfdb3 authored by Greg Williams's avatar Greg Williams
Browse files

Removed debug messages

parent bcb6a602
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -166,9 +166,6 @@ bool KineticPDU_Receive(KineticPDU* const response)
        KineticLogger_LogHeader(&response->header);
    }

    LOG_LOCATION; LOGF("response->header.protobufLength=%u",
        response->header.protobufLength);

    // Receive the protobuf message
    if (!KineticSocket_ReadProtobuf(fd, response))
    {
@@ -197,9 +194,6 @@ bool KineticPDU_Receive(KineticPDU* const response)
        LOG("Received protobuf HMAC validation succeeded");
    }

     LOG_LOCATION; LOGF("response->header.valueLength=%u",
        response->header.valueLength);

    // Receive the value payload, if specified
    if (response->header.valueLength > 0)
    {