Skip to content

Commit

Permalink
Fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
ipadjen committed Mar 6, 2024
1 parent 7d37730 commit 86e9506
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Map3d.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -352,10 +352,9 @@ void Map3d::reconstruct_buildings() {
}
this->clear_inactives(); // renumber failed and in case of imported-reconstructed fallback
// Gather failed reconstructions
std::cout << " Number of successfully reconstructed buildings: " << _buildingsPtr.size()
-_failedBuildingsPtr.size() << std::endl;
std::cout << " Number of successfully reconstructed buildings: " << _buildingsPtr.size() << std::endl;
Config::get().logSummary << "Building reconstruction summary: successfully reconstructed buildings: "
<< _buildingsPtr.size() - _failedBuildingsPtr.size() << std::endl;
<< _buildingsPtr.size() << std::endl;
Config::get().logSummary << " num of failed reconstructions: "
<< _failedBuildingsPtr.size() << std::endl;
}
Expand Down

0 comments on commit 86e9506

Please sign in to comment.