6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit 93cece4b

AuthorMikkel Thygesen<mikkelet@gmail.com>
Date2026-03-17 18:54:52 +0100
Disabled _removeStaleAccounts, made prints visible on PROD for debugging

Changed files

common/lib/services/msal_service.dart                 | 2 +-
 comwell_key_app/lib/presentation/base/base_cubit.dart | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

Diff

diff --git a/common/lib/services/msal_service.dart b/common/lib/services/msal_service.dart
index 5e9bb52b..86eab272 100644
--- a/common/lib/services/msal_service.dart
+++ b/common/lib/services/msal_service.dart
@@ -39,7 +39,7 @@ class MSALService {
authority: authorityUrl,
),
);
- if (Platform.isIOS) await _clearStaleAccounts();
+ // if (Platform.isIOS) await _clearStaleAccounts();
} catch (e) {
print("qqq msauth init=$e");
}
diff --git a/comwell_key_app/lib/presentation/base/base_cubit.dart b/comwell_key_app/lib/presentation/base/base_cubit.dart
index dcd9b8fd..5dbdac55 100644
--- a/comwell_key_app/lib/presentation/base/base_cubit.dart
+++ b/comwell_key_app/lib/presentation/base/base_cubit.dart
@@ -11,9 +11,9 @@ class BaseCubit<T> extends Cubit<T> {
}
void logError(Object e, StackTrace st) {
+ print("qqq $e");
+ print("qqq $st");
if (kDebugMode) {
- print("qqq $e");
- print("qqq $st");
} else {
Sentry.captureException(e);
}