diff options
| author | Wladimir J. van der Laan <[email protected]> | 2018-04-05 09:09:44 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2018-04-05 09:13:11 +0200 |
| commit | 2fc94370f510f6d1fbd7a6a6cdedf2b14a3e9fb2 (patch) | |
| tree | b14f389ad730e0b75ff2ea0de6f1014512d0a9a5 /src/init.cpp | |
| parent | Merge #11818: I accidentally [deliberately] killed it [the ComparisonTestFram... (diff) | |
| parent | [trivial] Add newlines to end of log messages. (diff) | |
| download | discoin-2fc94370f510f6d1fbd7a6a6cdedf2b14a3e9fb2.tar.xz discoin-2fc94370f510f6d1fbd7a6a6cdedf2b14a3e9fb2.zip | |
Merge #12887: [trivial] Add newlines to end of log messages.
5b10ab0 [trivial] Add newlines to end of log messages. (John Newbery)
Pull request description:
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.
Tree-SHA512: 88677afe85c88ce9f58312430e8881916bd76bbc8cd353ff81c97b3de8356680503160992c0ef3ea192b4694e848e9ca2480dbc38fea1776903b3784497f1af6
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index f6f522da6..4bb2bc2c3 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -668,7 +668,7 @@ void ThreadImport(std::vector<fs::path> vImportFiles) // scan for better chains in the block chain database, that are not yet connected in the active best chain CValidationState state; if (!ActivateBestChain(state, chainparams)) { - LogPrintf("Failed to connect best block"); + LogPrintf("Failed to connect best block\n"); StartShutdown(); return; } |