| 441 | } |
| 442 | |
| 443 | void PrintExceptionContinue(const std::exception* pex, const char* pszThread) |
| 444 | { |
| 445 | std::string message = FormatException(pex, pszThread); |
| 446 | LogPrintf("\n\n************************\n%s\n", message); |
| 447 | fprintf(stderr, "\n\n************************\n%s\n", message.c_str()); |
| 448 | } |
| 449 | |
| 450 | boost::filesystem::path GetDefaultDataDir() |
| 451 | { |
no test coverage detected