-
Notifications
You must be signed in to change notification settings - Fork 74
v0.2.48..v0.2.49 changeset RemoveRelationByEid.cpp
Garret Voltz edited this page Oct 2, 2019
·
1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/ops/RemoveRelationByEid.cpp b/hoot-core/src/main/cpp/hoot/core/ops/RemoveRelationByEid.cpp
index e0b0fd3..0f81e0a 100644
--- a/hoot-core/src/main/cpp/hoot/core/ops/RemoveRelationByEid.cpp
+++ b/hoot-core/src/main/cpp/hoot/core/ops/RemoveRelationByEid.cpp
@@ -69,6 +69,7 @@ void RemoveRelationByEid::apply(OsmMapPtr& map)
map->getRelation(parentRelationId)->removeElement(ElementId::relation(_rIdToRemove));
}
+ LOG_TRACE("Removing relation: " << _rIdToRemove);
map->_index->removeRelation(map->getRelation(_rIdToRemove));
map->_relations.erase(_rIdToRemove);
VALIDATE(map->validate());