diff --git a/lib/main.dart b/lib/main.dart index f0df21f57..6092dac8e 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -208,11 +208,15 @@ Future initializeAppConfigs({bool loadWallet = true}) async { final trades = await CakeHive.openBox(Trade.boxName, encryptionKey: tradesBoxKey); final orders = await CakeHive.openBox(Order.boxName, encryptionKey: ordersBoxKey); - printV("lsof (before): ${await LsofViewModelBase.fetchLsof()}", separateMultiline: true); + if (FeatureFlag.hasDevOptions) { + printV("lsof (before): ${await LsofViewModelBase.fetchLsof()}", separateMultiline: true); + } final walletInfoSource = await CakeHive.openBox(WalletInfo.boxName); printV("lsof ( after): ${await LsofViewModelBase.fetchLsof()}", separateMultiline: true); printV("WalletInfoSource length (initializeAppConfigs): ${walletInfoSource.length}"); - + if (FeatureFlag.hasDevOptions) { + printV("lsof ( after): ${await LsofViewModelBase.fetchLsof()}", separateMultiline: true); + } final templates = await CakeHive.openBox