| 67 | } |
| 68 | |
| 69 | void Logger::onLog(const LogEvent& ev) SKR_NOEXCEPT |
| 70 | { |
| 71 | if (auto should_backtrace = LogManager::Get()->ShouldBacktrace(ev)) |
| 72 | { |
| 73 | skr_log_flush(); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | void Logger::sinkDefaultImmediate(const LogEvent& e, skr::StringView what) const SKR_NOEXCEPT |
| 78 | { |
nothing calls this directly
no test coverage detected