Skip to content

Commit 06a861e

Browse files
committed
fix(efp): Removed info debug logging from wallet section module
Eliminated info log statements from the load() method in the wallet_section module to reduce console output and clean up the code.
1 parent a4a17bc commit 06a861e

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/app/modules/main/wallet_section/module.nim

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -278,9 +278,7 @@ method setFilterAllAddresses*(self: Module) =
278278
self.notifyFilterChanged()
279279

280280
method load*(self: Module) =
281-
info "wallet-section load() method called"
282281
singletonInstance.engine.setRootContextProperty("walletSection", self.viewVariant)
283-
info "wallet-section: walletSection property registered"
284282

285283
self.events.on(SIGNAL_KEYPAIR_SYNCED) do(e: Args):
286284
let args = KeypairArgs(e)
@@ -359,19 +357,12 @@ method load*(self: Module) =
359357
let args = SettingsTextValueArgs(e)
360358
self.view.setCurrentCurrency(args.value)
361359

362-
info "wallet-section: starting controller.init()"
363360
self.controller.init()
364-
info "wallet-section: starting view.load()"
365361
self.view.load()
366-
info "wallet-section: loading accountsModule"
367362
self.accountsModule.load()
368-
info "wallet-section: loading allTokensModule"
369363
self.allTokensModule.load()
370-
info "wallet-section: loading allCollectiblesModule"
371364
self.allCollectiblesModule.load()
372-
info "wallet-section: loading assetsModule"
373365
self.assetsModule.load()
374-
info "wallet-section: loading savedAddressesModule"
375366
self.savedAddressesModule.load()
376367
self.followingAddressesModule.load()
377368
self.buySellCryptoModule.load()

0 commit comments

Comments
 (0)