| 13 | class Log { |
| 14 | private: |
| 15 | enum class InitStatus { |
| 16 | NotInitialized, |
| 17 | Initializing, |
| 18 | Initialized |
| 19 | }; |
| 20 | |
| 21 | static std::atomic<InitStatus> s_LogInitStatus; |
| 22 | static std::weak_ptr<lazy_file_sink_mt> s_LogSink; |
nothing calls this directly
no outgoing calls
no test coverage detected