| 47 | |
| 48 | template<typename... Args> |
| 49 | bool error(const char* fmt, const Args&... args) |
| 50 | { |
| 51 | LogPrintf("ERROR: %s\n", tfm::format(fmt, args...)); |
| 52 | return false; |
| 53 | } |
| 54 | |
| 55 | void PrintExceptionContinue(const std::exception *pex, const char* pszThread); |
| 56 |