Skip to content

Commit bcaa495

Browse files
committed
use info::debug and set ACTIONS_STEP_DEBUG
1 parent dc37ed6 commit bcaa495

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ on:
1515
name: ci
1616

1717
env:
18+
ACTIONS_STEP_DEBUG: true
1819
CARGO_INCREMENTAL: 0
1920
CARGO_NET_RETRY: 10
2021
RUSTUP_MAX_RETRIES: 10

dc/s2n-quic-dc/src/stream/tests/restart.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ impl Harness {
9898
}
9999

100100
async fn run_one(&self, bidirectional: bool, sleep_before_shutdown: bool) {
101-
tracing::info!(bidirectional, sleep_before_shutdown);
101+
tracing::debug!(bidirectional, sleep_before_shutdown);
102102
let context = Context::bind(self.protocol, "127.0.0.1:0".parse().unwrap()).await;
103103

104104
check_stream(&context, bidirectional, sleep_before_shutdown)
@@ -117,7 +117,7 @@ impl Harness {
117117

118118
// This might fail, we don't care. At least two streams should fail before we
119119
// manage to successfully establish after dropping state.
120-
tracing::info!(
120+
tracing::debug!(
121121
"initial: {:?}",
122122
tokio::time::timeout(
123123
Duration::from_secs(2),
@@ -132,7 +132,7 @@ impl Harness {
132132

133133
// This should enqueue a recovery handshake. This used to be something we'd *wait* for, but
134134
// now we just do that in the background; this should still fail.
135-
tracing::info!(
135+
tracing::debug!(
136136
"recovery handshake: {:?}",
137137
tokio::time::timeout(
138138
Duration::from_secs(2),

0 commit comments

Comments
 (0)