| 15 | } |
| 16 | |
| 17 | Logger::Logger() : m_logger{spdlog::rotating_logger_st("testLogger", LogFilePath(), 102400, 1)} |
| 18 | { |
| 19 | m_logger->set_pattern("[%H:%M:%S.%e] [%l] [t:%t] [%!:%#] %v"); |
| 20 | m_logger->flush_on(spdlog::level::info); |
| 21 | } |
nothing calls this directly
no test coverage detected