From d30d4000bcd955f7d26a07b8b8fe475671123af1 Mon Sep 17 00:00:00 2001 From: Eric Wasylishen Date: Wed, 13 Jul 2022 00:30:53 -0600 Subject: [PATCH] qbsp: fix log spam from BrushBSP --- qbsp/brushbsp.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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; }