diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-03-05 16:15:04 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-03-05 16:15:04 +0100 |
commit | 8a6894ca3e978fb6a00f98e603277bca555a90ee (patch) | |
tree | c71475bdd20f87d8efd04eb864c04347bc1b0a00 | |
parent | 334bd22e75b1955b3dfefbf4f5e065afdbc46ae4 (diff) |
Log which wallet is used during init
Now that the wallet can be selected using -wallet it is important
to log which wallet is being used for later troubleshooting.
-rw-r--r-- | src/init.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index 4cc18800a5..372f5db297 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -593,6 +593,7 @@ bool AppInit2(boost::thread_group& threadGroup) // ********************************************************* Step 5: verify wallet database integrity #ifdef ENABLE_WALLET if (!fDisableWallet) { + LogPrintf("Using wallet %s\n", strWalletFile); uiInterface.InitMessage(_("Verifying wallet...")); if (!bitdb.Open(GetDataDir())) |