From 54ff4e5dd55ab26088d39329bc46b8f1bce2e6c3 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Sat, 29 Apr 2023 12:34:02 +0530 Subject: [PATCH] Enable computer logs in debug mode --- lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index 2d5da4b00..059a87885 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -155,7 +155,7 @@ Future _init(bool isBackground, {String via = ''}) async { AppLifecycleService.instance.onAppInForeground('init via: $via'); } // Start workers asynchroniously. No need to wait for them to start - Computer.shared().turnOn(workersCount: 4); + Computer.shared().turnOn(workersCount: 4, verbose: kDebugMode); CryptoUtil.init(); await NotificationService.instance.init(); await NetworkClient.instance.init();