#pragma once #include #include #include "spdlog/spdlog.h" #include "Logger.h" #include "DllDefines.h" class UTILITYDLL CMitechDebugLog : public CLogger { public: explicit CMitechDebugLog(const std::string& strName); ~CMitechDebugLog() final; private: void InitLogger(); // Inherited via CLogger void DoStart() override; void DoFlush() override; void DoLogging(const std::string& strMsg) override; std::shared_ptr m_logger; std::string m_strPathFilename{ R"(d:\machine\log\DebugLog.log)" }; };