fixed debug output in pqistreamer

This commit is contained in:
csoler 2021-10-31 12:01:07 +01:00
parent ffa28000e3
commit d659f768b5

View File

@ -683,7 +683,7 @@ int pqistreamer::handleoutgoing_locked()
outSentBytes_locked(mPkt_wpending_size); // this is the only time where we know exactly what was sent. outSentBytes_locked(mPkt_wpending_size); // this is the only time where we know exactly what was sent.
#ifdef DEBUG_TRANSFERS #ifdef DEBUG_TRANSFERS
std::cerr << "pqistreamer::handleoutgoing_locked() Sent Packet len: " << mPkt_wpending_size << " @ " << RsUtil::AccurateTimeString(); std::cerr << "pqistreamer::handleoutgoing_locked() Sent Packet len: " << mPkt_wpending_size << " @ " << getCurrentTS();
std::cerr << std::endl; std::cerr << std::endl;
#endif #endif
@ -693,7 +693,7 @@ int pqistreamer::handleoutgoing_locked()
mPkt_wpending = NULL; mPkt_wpending = NULL;
mPkt_wpending_size = 0 ; mPkt_wpending_size = 0 ;
sent = true; sent = true;
} }
} }
#ifdef DEBUG_PQISTREAMER #ifdef DEBUG_PQISTREAMER