Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop the logging level for STREAM frame writing #1629

Merged
merged 2 commits into from
Feb 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions neqo-transport/src/send_stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1620,16 +1620,16 @@ impl SendStreams {

// Iterate the map, but only those without fairness, then iterate
// OrderGroups, then iterate each group
qdebug!("processing streams... unfair:");
qtrace!("processing streams... unfair:");
for stream in self.map.values_mut() {
if !stream.is_fair() {
qdebug!(" {}", stream);
qtrace!(" {}", stream);
if !stream.write_frames_with_early_return(priority, builder, tokens, stats) {
break;
}
}
}
qdebug!("fair streams:");
qtrace!("fair streams:");
let stream_ids = self.regular.iter().chain(
self.sendordered
.values_mut()
Expand All @@ -1639,9 +1639,9 @@ impl SendStreams {
for stream_id in stream_ids {
let stream = self.map.get_mut(&stream_id).unwrap();
if let Some(order) = stream.sendorder() {
qdebug!(" {} ({})", stream_id, order)
qtrace!(" {} ({})", stream_id, order)
} else {
qdebug!(" None")
qtrace!(" None")
}
if !stream.write_frames_with_early_return(priority, builder, tokens, stats) {
break;
Expand Down
Loading