#pragma once #pragma once #include #include #include #include namespace Logging { // Usage: Log("{}\n", "Hello, world!"); template void Log(std::string_view format, Args&&... args) { const std::string raw = fmt::vformat(format, fmt::make_format_args(args...)); std::cout << raw; } }