diff --git a/qbsp/brushbsp.cc b/qbsp/brushbsp.cc index 9567ce3e..f0163beb 100644 --- a/qbsp/brushbsp.cc +++ b/qbsp/brushbsp.cc @@ -946,9 +946,9 @@ static std::unique_ptr BrushBSP(mapentity_t *entity, std::vector(new node_t{}); @@ -961,9 +961,9 @@ static std::unique_ptr BrushBSP(mapentity_t *entity, std::vectorcreate_content_stats(); BuildTree_r(tree->headnode.get(), std::move(brushlist), stats); - logging::print("{:5} visible nodes\n", stats.c_nodes - stats.c_nonvis); - logging::print("{:5} nonvis nodes\n", stats.c_nonvis); - logging::print("{:5} leafs\n", stats.c_leafs); + logging::print(logging::flag::STAT, "{:5} visible nodes\n", stats.c_nodes - stats.c_nonvis); + logging::print(logging::flag::STAT, "{:5} nonvis nodes\n", stats.c_nonvis); + logging::print(logging::flag::STAT, "{:5} leafs\n", stats.c_leafs); return tree; }