| 16 | { |
| 17 | protected: |
| 18 | LogConfigFixture() |
| 19 | { |
| 20 | auto binary_sink = std::make_shared<AsyncWaitFreeProcessor>(std::make_shared<BinaryLayout>()); |
| 21 | binary_sink->appenders().push_back(std::make_shared<FileAppender>(_file)); |
| 22 | Config::ConfigLogger("binary", binary_sink); |
| 23 | Config::Startup(); |
| 24 | } |
| 25 | |
| 26 | ~LogConfigFixture() |
| 27 | { |
nothing calls this directly
no outgoing calls
no test coverage detected