From 9d95bd16cd8a28bf20111aabcec7afb227006415 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Mon, 4 Sep 2023 09:35:38 +0530 Subject: [PATCH] By default, enable sentry in debugMode --- lib/core/logging/super_logging.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/logging/super_logging.dart b/lib/core/logging/super_logging.dart index 095e888f2..7b62d0a70 100644 --- a/lib/core/logging/super_logging.dart +++ b/lib/core/logging/super_logging.dart @@ -310,7 +310,7 @@ class SuperLogging { if (_preferences.containsKey(keyShouldReportErrors)) { return _preferences.getBool(keyShouldReportErrors)!; } else { - return false; + return kDebugMode; } }