There was an error while loading. Please reload this page.
2 parents f82c4c9 + bc2ca15 commit bc98f30Copy full SHA for bc98f30
1 file changed
moq-sub/src/main.rs
@@ -28,7 +28,12 @@ async fn main() -> anyhow::Result<()> {
28
tls,
29
})?;
30
31
- let (session, _connection_id) = quic.client.connect(&config.url).await?;
+ let (session, connection_id) = quic.client.connect(&config.url).await?;
32
+
33
+ log::info!(
34
+ "connected with CID: {} (use this to look up qlog/mlog on server)",
35
+ connection_id
36
+ );
37
38
let (session, subscriber) = moq_transport::session::Subscriber::connect(session)
39
.await
0 commit comments