From 398e0b7c63420e80fc44a3061f553815c56b2807 Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Wed, 20 Jan 2016 15:04:02 -0800 Subject: Removed debug line --- netcon/NetconEthernetTap.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'netcon') diff --git a/netcon/NetconEthernetTap.cpp b/netcon/NetconEthernetTap.cpp index 264b80e8..fda53fc0 100644 --- a/netcon/NetconEthernetTap.cpp +++ b/netcon/NetconEthernetTap.cpp @@ -427,8 +427,6 @@ void NetconEthernetTap::phyOnUnixWritable(PhySocket *sock,void **uptr,bool lwip_ } TcpConnection *conn = getConnection(sock); if(conn && conn->rxsz) { - dwr(MSG_DEBUG,"phyWritable(): conn->sock = %x, conn->rxbuf = %x, conn->rxsz = %d\n", conn->sock, conn->rxbuf, conn->rxsz); - int n = _phy.streamSend(conn->sock, conn->rxbuf, conn->rxsz); if(n > 0) { if(conn->rxsz-n > 0) @@ -436,7 +434,7 @@ void NetconEthernetTap::phyOnUnixWritable(PhySocket *sock,void **uptr,bool lwip_ conn->rxsz -= n; lwipstack->_tcp_recved(conn->pcb, n); } else { - dwr(MSG_ERROR," phyOnUnixWritable(): errno = %d, rxsz = %d\n", errno, conn->rxsz); + dwr(MSG_DEBUG," phyOnUnixWritable(): errno = %d, rxsz = %d\n", errno, conn->rxsz); _phy.setNotifyWritable(conn->sock, false); } } -- cgit v1.2.3