From 320355ca2854c616a409b8529ccdb178c44790e9 Mon Sep 17 00:00:00 2001 From: _ <> Date: Wed, 21 Jul 2021 23:15:57 +0000 Subject: [PATCH] :loud_sound: bump a couple things back up to debug --- prototypes/quic_demo/src/bin/quic_demo_client.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/prototypes/quic_demo/src/bin/quic_demo_client.rs b/prototypes/quic_demo/src/bin/quic_demo_client.rs index 1581952..6dbb1f6 100644 --- a/prototypes/quic_demo/src/bin/quic_demo_client.rs +++ b/prototypes/quic_demo/src/bin/quic_demo_client.rs @@ -28,7 +28,7 @@ async fn main () -> anyhow::Result <()> { let relay_addr = opt.relay_addr.unwrap_or_else (|| String::from ("127.0.0.1:30380")).parse ()?; let endpoint = make_client_endpoint ("0.0.0.0:0".parse ()?, &[&server_cert])?; - trace! ("Connecting to relay server"); + debug! ("Connecting to relay server"); let client_id = opt.client_id.unwrap_or_else (|| "bogus_client".to_string ()); @@ -46,7 +46,7 @@ async fn main () -> anyhow::Result <()> { let server_tcp_port = opt.server_tcp_port.unwrap_or (30382); let listener = TcpListener::bind (("127.0.0.1", client_tcp_port)).await?; - trace! ("Accepting local TCP connections from P1"); + debug! ("Accepting local TCP connections from P1"); // End of per-port stuff // Beginning of per-connection stuff