diff --git a/lib/models/myWallets.dart b/lib/models/myWallets.dart
index 701c3381d042fe0d134ef468f5a292bd406dcdaa..c7c796ae57afbcfe3ac694fadadf22930b1c3137 100644
--- a/lib/models/myWallets.dart
+++ b/lib/models/myWallets.dart
@@ -54,22 +54,21 @@ class MyWalletsProvider with ChangeNotifier {
       log.i('No wallets detected');
       return false;
     } else {
-      log.i('Some wallets have been detected.');
       return true;
     }
   }
 
   List readAllWallets(int _chest) {
-    log.d(walletsDirectory.path);
+    // log.d(walletsDirectory.path);
 
     listWallets = [];
 
     File _walletConfig = File('${walletsDirectory.path}/$_chest/list.conf');
     _walletConfig.readAsLinesSync().forEach((element) {
-      log.i(element);
       listWallets.add(WalletData(element));
     });
 
+    log.i(listWallets.toString());
     return listWallets;
   }
 
diff --git a/lib/screens/myWallets/walletOptions.dart b/lib/screens/myWallets/walletOptions.dart
index 44387bcba31fc5555448dec49a5787f9f8d8f749..e02ff7317717fd12081c629981bc78dd668833d6 100644
--- a/lib/screens/myWallets/walletOptions.dart
+++ b/lib/screens/myWallets/walletOptions.dart
@@ -22,7 +22,6 @@ class WalletOptions extends StatelessWidget {
   @override
   Widget build(BuildContext context) {
     SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
-    log.d("Build walletOptions");
     WalletOptionsProvider _walletOptions =
         Provider.of<WalletOptionsProvider>(context);
     MyWalletsProvider _myWalletProvider =
@@ -55,7 +54,7 @@ class WalletOptions extends StatelessWidget {
 
     int currentChest = _myWalletProvider.getCurrentChest();
 
-    log.d("$currentChest:${wallet.number}");
+    log.d("Wallet options: $currentChest:${wallet.number}");
 
     return WillPopScope(
       onWillPop: () {