diff --git a/hoot-core/src/main/cpp/hoot/core/scoring/MatchFeatureExtractor.cpp b/hoot-core/src/main/cpp/hoot/core/scoring/MatchFeatureExtractor.cpp
index d4e5514..c44e115 100644
--- a/hoot-core/src/main/cpp/hoot/core/scoring/MatchFeatureExtractor.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/scoring/MatchFeatureExtractor.cpp
@@ -22,7 +22,7 @@
* This will properly maintain the copyright information. DigitalGlobe
* copyrights will be updated automatically.
*
- * @copyright Copyright (C) 2015, 2016, 2017, 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2015, 2016, 2017, 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
*/
#include "MatchFeatureExtractor.h"
@@ -311,8 +311,9 @@ void MatchFeatureExtractor::processMap(const std::shared_ptr<const OsmMap>& map)
if (matchCount % 10 == 0)
{
PROGRESS_INFO(
- "Processed " << matchCount << " / " << matches.size() <<
- " matches; samples collected: " << _samples.size());
+ "Processed " << StringUtils::formatLargeNumber(matchCount) << " / " <<
+ StringUtils::formatLargeNumber(matches.size()) << " matches; samples collected: " <<
+ StringUtils::formatLargeNumber(_samples.size()));
}
}
}