Skip to content

v0.2.47..v0.2.48 changeset MatchConflicts.cpp

Garret Voltz edited this page Sep 27, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchConflicts.cpp b/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchConflicts.cpp
index 506fc50..2b9ce5a 100644
--- a/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchConflicts.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/conflate/matching/MatchConflicts.cpp
@@ -30,6 +30,7 @@
 #include <hoot/core/conflate/matching/Match.h>
 #include <hoot/core/conflate/merging/MergerFactory.h>
 #include <hoot/core/elements/ElementId.h>
+#include <hoot/core/util/StringUtils.h>
 
 // Standard
 #include <map>
@@ -100,11 +101,12 @@ void MatchConflicts::calculateMatchConflicts(const vector<const Match*>& matches
     if (eidToMatchCount % 100 == 0)
     {
       PROGRESS_INFO(
-        "Processed matches for " << eidToMatchCount << " / " << eidToMatches.size() <<
-        " elements. Found " << conflicts.size() << " match conflicts.");
+        "Processed matches for " << StringUtils::formatLargeNumber(eidToMatchCount) << " / " <<
+        StringUtils::formatLargeNumber(eidToMatches.size()) << " elements. Found " <<
+        StringUtils::formatLargeNumber(conflicts.size()) << " match conflicts.");
     }
   }
-  LOG_INFO("Found " << conflicts.size() << " match conflicts.");
+  LOG_DEBUG("Found " << StringUtils::formatLargeNumber(conflicts.size()) << " match conflicts.");
 
   calculateSubsetConflicts(matches, conflicts, matchSet);
 }
Clone this wiki locally