From 171671498165524687b52c0eb93c4ad7fc1502b9 Mon Sep 17 00:00:00 2001 From: Rongjian Zhang Date: Sat, 8 Feb 2020 15:00:44 +0800 Subject: [PATCH] fix: hide accounts info in production --- lib/models/auth.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/models/auth.dart b/lib/models/auth.dart index 0676515..807722d 100644 --- a/lib/models/auth.dart +++ b/lib/models/auth.dart @@ -306,7 +306,7 @@ class AuthModel with ChangeNotifier { // Read accounts try { String str = prefs.getString(StorageKeys.accounts); - Fimber.d('read accounts: $str'); + // Fimber.d('read accounts: $str'); _accounts = (json.decode(str ?? '[]') as List) .map((item) => Account.fromJson(item)) .toList();