log STREAM frames in long header packets (#3922)

This commit is contained in:
Benedikt Spies 2023-06-27 00:51:56 +02:00 committed by GitHub
parent efc252ff56
commit f3875147b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2078,6 +2078,9 @@ func (s *connection) logLongHeaderPacket(p *longHeaderPacket) {
for _, frame := range p.frames {
wire.LogFrame(s.logger, frame.Frame, true)
}
for _, frame := range p.streamFrames {
wire.LogFrame(s.logger, frame.Frame, true)
}
}
// tracing
@ -2086,6 +2089,9 @@ func (s *connection) logLongHeaderPacket(p *longHeaderPacket) {
for _, f := range p.frames {
frames = append(frames, logutils.ConvertFrame(f.Frame))
}
for _, f := range p.streamFrames {
frames = append(frames, logutils.ConvertFrame(f.Frame))
}
var ack *logging.AckFrame
if p.ack != nil {
ack = logutils.ConvertAckFrame(p.ack)