do not print errors if we are continuing.
This commit is contained in:
parent
7a8ecff423
commit
022ae120f8
@ -891,13 +891,15 @@ start_node_thread(void) {
|
|||||||
boost::bind(&DetectShutdownThread, &threadGroup));
|
boost::bind(&DetectShutdownThread, &threadGroup));
|
||||||
fRet = AppInit2(threadGroup);
|
fRet = AppInit2(threadGroup);
|
||||||
} catch (std::exception& e) {
|
} catch (std::exception& e) {
|
||||||
if (set_cooked()) {
|
// if (set_cooked()) {
|
||||||
fprintf(stderr, "bitcoind.js: AppInit(): std::exception\n");
|
// fprintf(stderr, "bitcoind.js: AppInit(): std::exception\n");
|
||||||
}
|
// }
|
||||||
|
;
|
||||||
} catch (...) {
|
} catch (...) {
|
||||||
if (set_cooked()) {
|
// if (set_cooked()) {
|
||||||
fprintf(stderr, "bitcoind.js: AppInit(): other exception\n");
|
// fprintf(stderr, "bitcoind.js: AppInit(): other exception\n");
|
||||||
}
|
// }
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!fRet) {
|
if (!fRet) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user