From 86a6bfbff1b8d365494a8e8480e3b3e82e1c2c13 Mon Sep 17 00:00:00 2001 From: Ilya Kitaev Date: Fri, 23 Sep 2016 00:07:12 +0300 Subject: [PATCH] Logging: removed password logging --- main.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.qml b/main.qml index e03aec5c..4597e65c 100644 --- a/main.qml +++ b/main.qml @@ -143,7 +143,8 @@ ApplicationWindow { connectWallet(wizard.settings['wallet']) } else { var wallet_path = walletPath(); - console.log("opening wallet at: ", wallet_path, "with password: ", appWindow.password); + // console.log("opening wallet at: ", wallet_path, "with password: ", appWindow.password); + console.log("opening wallet at: ", wallet_path); walletManager.openWalletAsync(wallet_path, appWindow.password, persistentSettings.testnet); }