Make speaking state more prominent

This commit is contained in:
2023-03-13 20:29:23 -04:00
parent 95806edca6
commit 632a115930

View File

@@ -58,7 +58,7 @@ impl EventHandler for Receiver {
users.insert(ssrc.clone(), user_id.clone());
}
println!(
"Speaking state update: user {:?} has SSRC {:?}, using {:?}",
"\n\n\nSpeaking state update: user {:?} has SSRC {:?}, using {:?}\n\n\n",
user_id,
ssrc,
speaking,
@@ -95,6 +95,9 @@ impl EventHandler for Receiver {
// An event which fires for every received rtcp packet,
// containing the call statistics and reporting information.
// println!("RTCP packet received: {:?}", data.packet);
},
Ctx::Client() => {
},
Ctx::ClientDisconnect(
ClientDisconnect {user_id, ..}