| 696 | } |
| 697 | |
| 698 | void PrintExceptionContinue(const std::exception* pex, const char* pszThread) |
| 699 | { |
| 700 | std::string message = FormatException(pex, pszThread); |
| 701 | LogPrintf("\n\n************************\n%s\n", message); |
| 702 | fprintf(stderr, "\n\n************************\n%s\n", message.c_str()); |
| 703 | } |
| 704 | |
| 705 | fs::path GetDefaultDataDir() |
| 706 | { |
no test coverage detected