| 199 | } |
| 200 | |
| 201 | void LogManager::FlushAllSinks() SKR_NOEXCEPT |
| 202 | { |
| 203 | SkrZoneScopedN("LogManager::FlushSinks"); |
| 204 | |
| 205 | for (auto&& [id, sink] : sinks_) |
| 206 | { |
| 207 | sink->flush(); |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | bool LogManager::ShouldBacktrace(const LogEvent& event) SKR_NOEXCEPT |
| 212 | { |
no test coverage detected