aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2014-03-05 16:15:04 +0100
committerWladimir J. van der Laan <[email protected]>2014-03-05 16:15:04 +0100
commit8a6894ca3e978fb6a00f98e603277bca555a90ee (patch)
treec71475bdd20f87d8efd04eb864c04347bc1b0a00 /src/init.cpp
parentMerge pull request #3798 (diff)
downloaddiscoin-8a6894ca3e978fb6a00f98e603277bca555a90ee.tar.xz
discoin-8a6894ca3e978fb6a00f98e603277bca555a90ee.zip
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.
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 4cc18800a..372f5db29 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()))