diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-03-05 16:15:04 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-03-05 16:15:04 +0100 |
| commit | 8a6894ca3e978fb6a00f98e603277bca555a90ee (patch) | |
| tree | c71475bdd20f87d8efd04eb864c04347bc1b0a00 /src/init.cpp | |
| parent | Merge pull request #3798 (diff) | |
| download | discoin-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.cpp | 1 |
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())) |