diff options
author | Ben Woosley <ben.woosley@gmail.com> | 2018-04-18 09:58:13 -0400 |
---|---|---|
committer | Ben Woosley <ben.woosley@gmail.com> | 2018-04-18 18:43:12 -0400 |
commit | e4d0b44373c75a597c21a0e93698364fc33fb79d (patch) | |
tree | 0c952fb20dbe102e0014617af79e453c6d4f6587 /src/init.cpp | |
parent | 615f7c288414a89cd1dec1d67e0f84abe2fb4c6d (diff) |
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 8538630d7e..f403f90b08 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; } |