portals.cc: log number of tree portals

This commit is contained in:
Eric Wasylishen 2022-07-30 00:29:54 -06:00
parent 360daea172
commit e1b6aba014
1 changed files with 1 additions and 0 deletions

View File

@ -439,6 +439,7 @@ void MakeTreePortals(tree_t *tree)
MakeTreePortals_r(tree, tree->headnode.get(), stats);
logging::print(logging::flag::STAT, " {:8} tiny portals\n", stats.c_tinyportals);
logging::print(logging::flag::STAT, " {:8} tree portals\n", tree->portals.size());
}
static void AssertNoPortals_r(node_t *node)