refactor: Remove syncstatus verbose logs
This commit is contained in:
parent
3c46c0568b
commit
02de389b5d
1 changed files with 0 additions and 7 deletions
|
|
@ -352,8 +352,6 @@ class ChatListController extends State<ChatList>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
StreamSubscription? _onSyncStatus;
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
_initReceiveSharingIntent();
|
_initReceiveSharingIntent();
|
||||||
|
|
@ -370,10 +368,6 @@ class ChatListController extends State<ChatList>
|
||||||
});
|
});
|
||||||
|
|
||||||
_checkTorBrowser();
|
_checkTorBrowser();
|
||||||
_onSyncStatus =
|
|
||||||
Matrix.of(context).client.onSyncStatus.stream.listen((status) {
|
|
||||||
Logs().v('Sync Status: ${status.status.name}');
|
|
||||||
});
|
|
||||||
|
|
||||||
super.initState();
|
super.initState();
|
||||||
}
|
}
|
||||||
|
|
@ -383,7 +377,6 @@ class ChatListController extends State<ChatList>
|
||||||
_intentDataStreamSubscription?.cancel();
|
_intentDataStreamSubscription?.cancel();
|
||||||
_intentFileStreamSubscription?.cancel();
|
_intentFileStreamSubscription?.cancel();
|
||||||
_intentUriStreamSubscription?.cancel();
|
_intentUriStreamSubscription?.cancel();
|
||||||
_onSyncStatus?.cancel();
|
|
||||||
scrollController.removeListener(_onScroll);
|
scrollController.removeListener(_onScroll);
|
||||||
super.dispose();
|
super.dispose();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue