do not print errors if we are continuing.

This commit is contained in:
Christopher Jeffrey 2014-12-10 15:09:08 -08:00
parent 7a8ecff423
commit 022ae120f8

View File

@ -891,13 +891,15 @@ start_node_thread(void) {
boost::bind(&DetectShutdownThread, &threadGroup));
fRet = AppInit2(threadGroup);
} catch (std::exception& e) {
if (set_cooked()) {
fprintf(stderr, "bitcoind.js: AppInit(): std::exception\n");
}
// if (set_cooked()) {
// fprintf(stderr, "bitcoind.js: AppInit(): std::exception\n");
// }
;
} catch (...) {
if (set_cooked()) {
fprintf(stderr, "bitcoind.js: AppInit(): other exception\n");
}
// if (set_cooked()) {
// fprintf(stderr, "bitcoind.js: AppInit(): other exception\n");
// }
;
}
if (!fRet) {