mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-05-14 05:59:29 +00:00
Remove stray printlines
This commit is contained in:
parent
56f48c6a38
commit
e4cebe79db
@ -98,13 +98,6 @@ where
|
|||||||
let convo_id = hex::encode(mls_group.group_id().as_slice());
|
let convo_id = hex::encode(mls_group.group_id().as_slice());
|
||||||
Self::subscribe(&mut ds.borrow_mut(), &convo_id)?;
|
Self::subscribe(&mut ds.borrow_mut(), &convo_id)?;
|
||||||
|
|
||||||
println!(
|
|
||||||
"@ Create Convo: {}. {}. d:{} dc:{}",
|
|
||||||
ctx.borrow().ident().friendly_name(),
|
|
||||||
convo_id,
|
|
||||||
Self::delivery_address_from_id(&convo_id),
|
|
||||||
Self::ctrl_delivery_address_from_id(&convo_id)
|
|
||||||
);
|
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
ctx,
|
ctx,
|
||||||
ds,
|
ds,
|
||||||
@ -136,14 +129,6 @@ where
|
|||||||
let convo_id = hex::encode(mls_group.group_id().as_slice());
|
let convo_id = hex::encode(mls_group.group_id().as_slice());
|
||||||
Self::subscribe(&mut *ds.borrow_mut(), &convo_id)?;
|
Self::subscribe(&mut *ds.borrow_mut(), &convo_id)?;
|
||||||
|
|
||||||
println!(
|
|
||||||
"@ Welcome Convo: I:{}. {}. d:{} dc:{}",
|
|
||||||
ctx.borrow().ident().friendly_name(),
|
|
||||||
convo_id,
|
|
||||||
Self::delivery_address_from_id(&convo_id),
|
|
||||||
Self::ctrl_delivery_address_from_id(&convo_id)
|
|
||||||
);
|
|
||||||
|
|
||||||
Ok(Self {
|
Ok(Self {
|
||||||
ctx,
|
ctx,
|
||||||
ds,
|
ds,
|
||||||
@ -335,8 +320,8 @@ where
|
|||||||
.map_err(ChatError::generic)?;
|
.map_err(ChatError::generic)?;
|
||||||
Ok(None)
|
Ok(None)
|
||||||
}
|
}
|
||||||
x => {
|
_ => {
|
||||||
println!("Unhabled Message ttype {:?}", x);
|
// TODO: (P2) Log unknown message type
|
||||||
Ok(None)
|
Ok(None)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user