Skip to content

Commit

Permalink
chore(ui): Remove some logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hywan committed Jul 1, 2024
1 parent 2352978 commit 6132841
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions crates/matrix-sdk-ui/src/room_list_service/room_list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,6 @@ fn merge_stream_and_receiver(
biased;

diffs = raw_stream.next() => {
tracing::error!("merge streams: receive diff");

if let Some(diffs) = diffs {
for diff in &diffs {
diff.clone().apply(&mut raw_current_values);
Expand All @@ -214,8 +212,6 @@ fn merge_stream_and_receiver(
}

Ok(update) = roominfo_update_recv.recv() => {
tracing::error!(trigger_update = ?update.trigger_room_list_update, "merge streams: receive roominfo update");

if !update.trigger_room_list_update {
continue;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ where
{
fn matches(&self, left: &Room, right: &Room) -> Ordering {
if left.id() == right.id() {
tracing::error!("recency, with the same room");
// `left` and `right` are the same room. We are comparing the same
// `LatestEvent`!
//
Expand Down

0 comments on commit 6132841

Please sign in to comment.