MINOR: quic: Add stream IDs to qcs_push_frame() traces

This is only for debug purpose.
This commit is contained in:
Frédéric Lécaille 2021-12-21 11:53:33 +01:00
parent e770ce3980
commit 677b99dca7
1 changed files with 2 additions and 1 deletions

View File

@ -283,7 +283,8 @@ static int qcs_push_frame(struct qcs *qcs, struct buffer *payload, int fin, uint
MT_LIST_APPEND(&qel->pktns->tx.frms, &frm->mt_list);
out:
fprintf(stderr, "%s: total=%d fin=%d offset=%lu\n", __func__, total, fin, offset);
fprintf(stderr, "%s: total=%d fin=%d id=%llu offset=%lu\n",
__func__, total, fin, (ull)qcs->by_id.key, offset);
return total;
err: