Skip to content

Commit 10cff7b

Browse files
authored
quic: fix debug log
PR-URL: #57689 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Moshe Atlow <[email protected]>
1 parent 657f818 commit 10cff7b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/internal/quic/quic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ class QuicStream {
776776
[kSendHeaders](headers) {
777777
validateObject(headers, 'headers');
778778
if (this.pending) {
779-
debug('pending stream enqueing headers', headers);
779+
debug('pending stream enqueuing headers', headers);
780780
} else {
781781
debug(`stream ${this.id} sending headers`, headers);
782782
}

src/quic/streams.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@ void Stream::Acknowledge(size_t datalen) {
11091109
}
11101110

11111111
void Stream::Commit(size_t datalen) {
1112-
Debug(this, "Commiting %zu bytes", datalen);
1112+
Debug(this, "Committing %zu bytes", datalen);
11131113
STAT_RECORD_TIMESTAMP(Stats, acked_at);
11141114
if (outbound_) outbound_->Commit(datalen);
11151115
}

0 commit comments

Comments
 (0)