Remove info tracing in socket channel read function.

Change-Id: I118ff262ab87eafcdf80b62c32553e390251cfb1
Signed-off-by: Tom Joseph <tomjoseph@in.ibm.com>
diff --git a/socket_channel.cpp b/socket_channel.cpp
index fa5c882..e77c6cf 100644
--- a/socket_channel.cpp
+++ b/socket_channel.cpp
@@ -48,12 +48,7 @@
                                &address.sockAddr,    // Address
                                &address.addrSize);   // Address Length
 
-        if (readDataLen > 0) // Data read from the socket
-        {
-            std::cout << "I> Channel::Read : DataIn Fd[" << sockfd << "] Req["
-                      << bufferSize << "] Recv[" << readDataLen << "]\n";
-        }
-        else if (readDataLen == 0) // Peer has performed an orderly shutdown
+        if (readDataLen == 0) // Peer has performed an orderly shutdown
         {
             std::cerr << "E> Channel::Read : Connection Closed Fd[" << sockfd
                       << "]\n";