diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-11-06 08:47:48 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-11-06 08:54:34 +0100 |
commit | 9bdec7603713d269767dfd86dbd9b8342d0120fe (patch) | |
tree | 297704cab4ce1d9c3502e38d2579d1dd9852af6e /src/init.cpp | |
parent | d064f7f3ee1b80c7e9ca1f149cae8aca4a071230 (diff) |
Always log number of threads for script verification
Helps for troubleshooting.
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 fe58c68fda..158713b321 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -746,8 +746,8 @@ bool AppInit2(boost::thread_group& threadGroup) LogPrintf("Using at most %i connections (%i file descriptors available)\n", nMaxConnections, nFD); std::ostringstream strErrors; + LogPrintf("Using %u threads for script verification\n", nScriptCheckThreads); if (nScriptCheckThreads) { - LogPrintf("Using %u threads for script verification\n", nScriptCheckThreads); for (int i=0; i<nScriptCheckThreads-1; i++) threadGroup.create_thread(&ThreadScriptCheck); } |