More efficient logging

This commit is contained in:
MetricExpansion 2022-09-11 14:14:00 -07:00
parent 6c47eb687e
commit bcbc230f3f

View file

@ -57,7 +57,7 @@
using namespace std::literals;
#define LOG(a_type, ...) spdlog::log(spdlog::source_loc(__FILE__, __LINE__, __FUNCTION__), spdlog::level::a_type, fmt::format(__VA_ARGS__))
#define LOG(a_type, ...) spdlog::log(spdlog::source_loc(__FILE__, __LINE__, __FUNCTION__), spdlog::level::a_type, __VA_ARGS__)
namespace util {
using SKSE::stl::report_and_fail;