Live video on the AT Protocol

moar logging -v

b5 a2671c4f bf6abe3f

+3
+3
rust/iroh-streamplace/src/lib.rs
··· 507 507 .. 508 508 } = msg; 509 509 let conn = self.connections.get(&remote_id); 510 + trace!(remote = %remote_id.fmt_short(), key = %key, "send rpc::Subscribe message"); 510 511 conn.rpc 511 512 .rpc(rpc::Subscribe { 512 513 key: key.clone(), ··· 514 515 }) 515 516 .await 516 517 .ok(); 518 + trace!(remote = %remote_id.fmt_short(), key = %key, "inserting subscription"); 517 519 self.subscriptions.insert(key, remote_id); 518 520 tx.send(()).await.ok(); 521 + trace!("finished inserting subscription"); 519 522 } 520 523 ApiMessage::Unsubscribe(msg) => { 521 524 trace!(inner = ?msg.inner, "ApiMessage::Unsubscribe");