| 56 | using std::chrono::milliseconds; |
| 57 | |
| 58 | logger *getLogger() { |
| 59 | static shared_ptr<logger> logger(loggerFactory("jit")); |
| 60 | return logger.get(); |
| 61 | } |
| 62 | |
| 63 | #define THROW_BUILD_LOG_EXCEPTION(PROG) \ |
| 64 | do { \ |
nothing calls this directly
no test coverage detected