Skip to content

Commit bc98f30

Browse files
authored
Merge pull request #91 from englishm/me/moq-sub-cid
2 parents f82c4c9 + bc2ca15 commit bc98f30

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

moq-sub/src/main.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,12 @@ async fn main() -> anyhow::Result<()> {
2828
tls,
2929
})?;
3030

31-
let (session, _connection_id) = quic.client.connect(&config.url).await?;
31+
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+
);
3237

3338
let (session, subscriber) = moq_transport::session::Subscriber::connect(session)
3439
.await

0 commit comments

Comments
 (0)