diff options
| author | Ben Woosley <[email protected]> | 2018-04-18 09:58:13 -0400 |
|---|---|---|
| committer | Ben Woosley <[email protected]> | 2018-04-18 18:43:12 -0400 |
| commit | e4d0b44373c75a597c21a0e93698364fc33fb79d (patch) | |
| tree | 0c952fb20dbe102e0014617af79e453c6d4f6587 /src/init.cpp | |
| parent | Merge #12985: Windows: Avoid launching as admin when NSIS installer ends. (diff) | |
| download | discoin-e4d0b44373c75a597c21a0e93698364fc33fb79d.tar.xz discoin-e4d0b44373c75a597c21a0e93698364fc33fb79d.zip | |
Consistently log CValidationState on failure
Seems providing at least minimal visibility to the failure is a good practice.
The only remaining ignored state is in LoadExternalBlockFile, where logging
would likely be spammy.
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 8538630d7..f403f90b0 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -684,7 +684,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\n"); + LogPrintf("Failed to connect best block (%s)\n", FormatStateMessage(state)); StartShutdown(); return; } |