Skip to content

Commit

Permalink
[core] Added socket ID to RCV-DROP log message
Browse files Browse the repository at this point in the history
  • Loading branch information
maxsharabayko committed Jan 22, 2021
1 parent 68edf20 commit 40aafa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion srtcore/core.cpp
Expand Up @@ -5676,7 +5676,7 @@ void *CUDT::tsbpd(void *param)
<< (timediff_us / 1000) << "." << std::setw(3) << std::setfill('0') << (timediff_us % 1000) << " ms");
#endif
LOGC(brlog.Warn,
log << "RCV-DROPPED " << seqlen << " packet(s), packet seqno %" << skiptoseqno
log << self->CONID() << "RCV-DROPPED " << seqlen << " packet(s), packet seqno %" << skiptoseqno
<< " delayed for " << (timediff_us / 1000) << "." << std::setw(3) << std::setfill('0')
<< (timediff_us % 1000) << " ms");
#endif
Expand Down

0 comments on commit 40aafa2

Please sign in to comment.