diff options
| author | John Newbery <[email protected]> | 2018-04-04 15:52:18 -0400 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2018-04-04 15:52:23 -0400 |
| commit | 5b10ab0116245ee73b493e2248ad2f8bb8e34f21 (patch) | |
| tree | 07282e4057226b1d864c63eda936c334fa41d887 /src/init.cpp | |
| parent | Merge #12846: [moveonly] Extract HelpRequested to dry up the help options tes... (diff) | |
| download | discoin-5b10ab0116245ee73b493e2248ad2f8bb8e34f21.tar.xz discoin-5b10ab0116245ee73b493e2248ad2f8bb8e34f21.zip | |
[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/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; } |