We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b871ae commit 52ba074Copy full SHA for 52ba074
src/sv2-tp.cpp
@@ -172,9 +172,9 @@ MAIN_FUNCTION
172
node_init = mine_init->ipc()->connectAddress(address);
173
break; // Success: break out of the loop
174
} catch (const std::exception& exception) {
175
- tfm::format(std::cerr, "IPC connection failed: %s\n", exception.what());
176
- tfm::format(std::cerr, "bitcoin-node might not be running or listening on a UNIX socket.\n");
177
- tfm::format(std::cerr, "Retrying in 10 seconds...\n\n");
+ LogPrintf("IPC connection failed: %s\n", exception.what());
+ LogPrintf("bitcoin-node might not be running or listening on a UNIX socket.\n");
+ LogPrintf("Retrying in 10 seconds...\n");
178
179
std::this_thread::sleep_for(std::chrono::seconds(10));
180
}
0 commit comments