| 237 | } |
| 238 | |
| 239 | void printStack(char const* message) { |
| 240 | Logger::info("Stack Trace ({})...\n{}", message, outputStack(captureStack())); |
| 241 | } |
| 242 | |
| 243 | void fatalError(char const* message, bool showStackTrace) { |
| 244 | std::ostringstream ss; |
nothing calls this directly
no test coverage detected