Renamed spdlog::log_level to spdlog::level and added some level tests

This commit is contained in:
gabime
2023-09-23 17:59:51 +03:00
parent 2d801bbd80
commit 433cac487e
48 changed files with 473 additions and 370 deletions

View File

@@ -59,7 +59,7 @@ protected:
{
for (auto &sub_sink : sinks_)
{
if (sub_sink->should_log(msg.level))
if (sub_sink->should_log(msg.log_level))
{
sub_sink->log(msg);
}