| 9 | } |
| 10 | |
| 11 | static const std::string LogFilePath() |
| 12 | { |
| 13 | auto const localFolderPath = winrt::Windows::Storage::ApplicationData::Current().LocalFolder().Path() + LR"(\log.txt)"; |
| 14 | return winrt::to_string(localFolderPath); |
| 15 | } |
| 16 | |
| 17 | Logger::Logger() : m_logger{spdlog::rotating_logger_st("testLogger", LogFilePath(), 102400, 1)} |
| 18 | { |