Skip to content

v0.2.53..v0.2.54 changeset WayJoinerAdvanced.cpp

Garret Voltz edited this page Mar 31, 2020 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/algorithms/WayJoinerAdvanced.cpp b/hoot-core/src/main/cpp/hoot/core/algorithms/WayJoinerAdvanced.cpp
index ad0fd9c..d9ab30b 100644
--- a/hoot-core/src/main/cpp/hoot/core/algorithms/WayJoinerAdvanced.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/algorithms/WayJoinerAdvanced.cpp
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 
 #include "WayJoinerAdvanced.h"
@@ -81,7 +81,7 @@ void WayJoinerAdvanced::join(const OsmMapPtr& map)
 
 void WayJoinerAdvanced::_joinParentChild()
 {
-  LOG_TRACE("Joining parents to children...");
+  LOG_INFO("\tJoining parent ways to children...");
 
   WayMap ways = _map->getWays();
   vector<long> ids;
@@ -157,7 +157,7 @@ long WayJoinerAdvanced::_getPid(const ConstWayPtr& way) const
 
 void WayJoinerAdvanced::_joinAtNode()
 {
-  LOG_TRACE("Joining ways at node...");
+  LOG_TRACE("\tJoining ways at node...");
 
   unordered_set<long> ids;
   unordered_set<long>::size_type currentNumSplitParentIds = ids.max_size();
@@ -274,7 +274,7 @@ void WayJoinerAdvanced::_joinAtNode()
 
 void WayJoinerAdvanced::_rejoinSiblings(deque<long>& way_ids)
 {
-  LOG_TRACE("Rejoining siblings...");
+  LOG_TRACE("\tRejoining siblings...");
   LOG_VART(way_ids);
 
   WayMap ways = _map->getWays();
Clone this wiki locally