fix: hide accounts info in production

This commit is contained in:
Rongjian Zhang 2020-02-08 15:00:44 +08:00
parent 8c45a70ae3
commit 1716714981
1 changed files with 1 additions and 1 deletions

View File

@ -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();