diff options
author | John Newbery <john@johnnewbery.com> | 2018-04-04 15:52:18 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-04-04 15:52:23 -0400 |
commit | 5b10ab0116245ee73b493e2248ad2f8bb8e34f21 (patch) | |
tree | 07282e4057226b1d864c63eda936c334fa41d887 /src/wallet | |
parent | ad960f5771dc251c8e1198dd8a82e18df4562171 (diff) |
[trivial] Add newlines to end of log messages.
Log messages should terminate with a '\n', or the following log will be
written to the same line without a timestamp. Fix a couple of cases
where the message is not terminated with a \n.
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index c9843599d6..dbc1760c80 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -878,7 +878,7 @@ bool CWallet::MarkReplaced(const uint256& originalHash, const uint256& newHash) bool success = true; if (!walletdb.WriteTx(wtx)) { - LogPrintf("%s: Updating walletdb tx %s failed", __func__, wtx.GetHash().ToString()); + LogPrintf("%s: Updating walletdb tx %s failed\n", __func__, wtx.GetHash().ToString()); success = false; } |