File tree Expand file tree Collapse file tree 2 files changed +0
-5
lines changed
crates/matrix-sdk-ui/src/room_list_service Expand file tree Collapse file tree 2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -199,8 +199,6 @@ fn merge_stream_and_receiver(
199
199
biased;
200
200
201
201
diffs = raw_stream. next( ) => {
202
- tracing:: error!( "merge streams: receive diff" ) ;
203
-
204
202
if let Some ( diffs) = diffs {
205
203
for diff in & diffs {
206
204
diff. clone( ) . apply( & mut raw_current_values) ;
@@ -214,8 +212,6 @@ fn merge_stream_and_receiver(
214
212
}
215
213
216
214
Ok ( update) = roominfo_update_recv. recv( ) => {
217
- tracing:: error!( trigger_update = ?update. trigger_room_list_update, "merge streams: receive roominfo update" ) ;
218
-
219
215
if !update. trigger_room_list_update {
220
216
continue ;
221
217
}
Original file line number Diff line number Diff line change 31
31
{
32
32
fn matches ( & self , left : & Room , right : & Room ) -> Ordering {
33
33
if left. id ( ) == right. id ( ) {
34
- tracing:: error!( "recency, with the same room" ) ;
35
34
// `left` and `right` are the same room. We are comparing the same
36
35
// `LatestEvent`!
37
36
//
You can’t perform that action at this time.
0 commit comments