Only send exceptions to the log, not stderr

This commit is contained in:
Taylor Hornby 2022-03-24 20:32:17 -06:00
parent 56f7bce865
commit 829d8d804d
1 changed files with 0 additions and 1 deletions

View File

@ -213,7 +213,6 @@ void PrintExceptionContinue(const std::exception* pex, const char* pszThread)
{
std::string message = FormatException(pex, pszThread);
LogPrintf("\n\n************************\n%s\n", message);
fprintf(stderr, "\n\n************************\n%s\n", message.c_str());
}
fs::path GetDefaultDataDir()