diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 0949045ff01b0..61e355e82c517 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -2794,7 +2794,9 @@ std::shared_ptr CWallet::Create(WalletContext& context, const std::stri DBErrors nLoadWalletRet = walletInstance->LoadWallet(); if (nLoadWalletRet != DBErrors::LOAD_OK) { if (nLoadWalletRet == DBErrors::CORRUPT) { - error = strprintf(_("Error loading %s: Wallet corrupted"), walletFile); + error = strprintf(_("Error loading %s: Wallet corrupted\n\n" + "For more information, please enable the wallet logging level " + "and open the log:\n%s"), walletFile, PathToString(gArgs.GetDataDirNet() / "debug.log")); return nullptr; } else if (nLoadWalletRet == DBErrors::NONCRITICAL_ERROR)