Fix logging

This commit is contained in:
problematicconsumer
2023-08-24 22:19:22 +03:30
parent 4edd2e1f8a
commit 49519b7fd7
3 changed files with 25 additions and 25 deletions

View File

@@ -71,7 +71,7 @@ class MobileSingboxService with InfraLogger implements SingboxService {
Stream<String> watchLogs(String path) {
return _logsChannel.receiveBroadcastStream().map(
(event) {
loggy.debug("received log: $event");
// loggy.debug("received log: $event");
return event as String;
},
);