diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2019-02-05 01:27:39 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2019-02-05 01:27:39 +0200 |
commit | e1b6436aad2bac5d3051740e02430f339bc7ecc5 (patch) | |
tree | 8f509bf6be6709937b133a9d6a41a3369af240e5 /src/bitcoin-wallet.cpp | |
parent | 452acee4da206eb8792505914fd92245246b2290 (diff) |
Fix build after pr 15266 merged
Diffstat (limited to 'src/bitcoin-wallet.cpp')
-rw-r--r-- | src/bitcoin-wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoin-wallet.cpp b/src/bitcoin-wallet.cpp index 293e3efa5c..11caa0dc6c 100644 --- a/src/bitcoin-wallet.cpp +++ b/src/bitcoin-wallet.cpp @@ -58,7 +58,7 @@ static bool WalletAppInit(int argc, char* argv[]) } // check for printtoconsole, allow -debug - g_logger->m_print_to_console = gArgs.GetBoolArg("-printtoconsole", gArgs.GetBoolArg("-debug", false)); + LogInstance().m_print_to_console = gArgs.GetBoolArg("-printtoconsole", gArgs.GetBoolArg("-debug", false)); if (!fs::is_directory(GetDataDir(false))) { fprintf(stderr, "Error: Specified data directory \"%s\" does not exist.\n", gArgs.GetArg("-datadir", "").c_str()); |