[style] Add newline to all LogPrintf's

This commit is contained in:
Jon Layton 2018-08-02 01:43:37 -05:00
parent ecd7c40e5b
commit 9c9d37f3f8
5 changed files with 5 additions and 5 deletions

View File

@ -23,7 +23,7 @@ std::string GetUTXOFileName(int nHeight, const CChainParams& chainparams)
boost::filesystem::path utxo_path(GetDataDir() / "utxo_snapshot");
if (utxo_path.empty() || !utxo_path.has_filename())
{
LogPrintf("GetUTXOFileName(): UTXO path is not specified, add utxo-path=<path-to-utxo-files> to your bitcoin.conf and restart");
LogPrintf("GetUTXOFileName(): UTXO path is not specified, add utxo-path=<path-to-utxo-files> to your bitcoin.conf and restart\n");
return "";
}

View File

@ -157,7 +157,7 @@ void AsyncRPCOperation_mergetoaddress::main()
} else {
s += strprintf(", error=%s)\n", getErrorMessage());
}
LogPrintf("%s", s);
LogPrintf("%s\n", s);
unlock_utxos(); // clean up
unlock_notes(); // clean up

View File

@ -159,7 +159,7 @@ void AsyncRPCOperation_sendmany::main() {
} else {
s += strprintf(", error=%s)\n", getErrorMessage());
}
LogPrintf("%s",s);
LogPrintf("%s\n",s);
// !!! Payment disclosure START
if (success && paymentDisclosureMode && paymentDisclosureData_.size()>0) {

View File

@ -189,4 +189,4 @@ public:
};
#endif // BITCOIN_WALLET_ASYNCRPCOPERATION_SENDMANY_H
#endif // BITCOIN_WALLET_ASYNCRPCOPERATION_SENDMANY_H

View File

@ -139,7 +139,7 @@ void AsyncRPCOperation_shieldcoinbase::main() {
} else {
s += strprintf(", error=%s)\n", getErrorMessage());
}
LogPrintf("%s",s);
LogPrintf("%s\n",s);
unlock_utxos(); // clean up