Skip to content

Commit 6132841

Browse files
committed
chore(ui): Remove some logs.
1 parent 2352978 commit 6132841

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

crates/matrix-sdk-ui/src/room_list_service/room_list.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,6 @@ fn merge_stream_and_receiver(
199199
biased;
200200

201201
diffs = raw_stream.next() => {
202-
tracing::error!("merge streams: receive diff");
203-
204202
if let Some(diffs) = diffs {
205203
for diff in &diffs {
206204
diff.clone().apply(&mut raw_current_values);
@@ -214,8 +212,6 @@ fn merge_stream_and_receiver(
214212
}
215213

216214
Ok(update) = roominfo_update_recv.recv() => {
217-
tracing::error!(trigger_update = ?update.trigger_room_list_update, "merge streams: receive roominfo update");
218-
219215
if !update.trigger_room_list_update {
220216
continue;
221217
}

crates/matrix-sdk-ui/src/room_list_service/sorters/recency.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ where
3131
{
3232
fn matches(&self, left: &Room, right: &Room) -> Ordering {
3333
if left.id() == right.id() {
34-
tracing::error!("recency, with the same room");
3534
// `left` and `right` are the same room. We are comparing the same
3635
// `LatestEvent`!
3736
//

0 commit comments

Comments
 (0)