From 5898c8b27639e3949dbd710b2961986210bd450c Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Thu, 4 Jun 2009 15:04:34 +0000 Subject: [PATCH] (trunk libT) add a debugging message to r8609 in case we ever have to go back to the bad old days of TR_DEBUG_FD --- libtransmission/peer-msgs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libtransmission/peer-msgs.c b/libtransmission/peer-msgs.c index 94bdd0f44..76c2e625d 100644 --- a/libtransmission/peer-msgs.c +++ b/libtransmission/peer-msgs.c @@ -1742,6 +1742,7 @@ fillOutputBuffer( tr_peermsgs * msgs, time_t now ) } else { + dbgmsg( msgs, "sending block %u:%u->%u", req.index, req.offset, req.length ); EVBUFFER_LENGTH(out) += req.length; assert( EVBUFFER_LENGTH( out ) == msglen ); tr_peerIoWriteBuf( io, out, TRUE );