#pragma once #include #include #include namespace NLog { template //NOLINTNEXTLINE void log(std::format_string fmt, Args&&... args) { std::string logMsg = ""; logMsg += std::vformat(fmt.get(), std::make_format_args(args...)); std::println("{}", logMsg); std::fflush(stdout); } }