#pragma once #include class Logger { private: std::shared_ptr logger; public: Logger(); Logger(std::string loggerName, std::wstring logFilePath, std::wstring_view logSettingsPath); template void trace(const FormatString& fmt, const Args&... args) { this->logger->trace(fmt, args...); } template void debug(const FormatString& fmt, const Args&... args) { this->logger->debug(fmt, args...); } template void info(const FormatString& fmt, const Args&... args) { this->logger->info(fmt, args...); } template void warn(const FormatString& fmt, const Args&... args) { this->logger->warn(fmt, args...); } template void error(const FormatString& fmt, const Args&... args) { this->logger->error(fmt, args...); } template void critical(const FormatString& fmt, const Args&... args) { this->logger->critical(fmt, args...); } ~Logger(); };