From d6e3226714da01b0bfb4530619b47229cd6a7a99 Mon Sep 17 00:00:00 2001 From: Max Lyon Date: Mon, 15 Mar 2021 10:26:00 +0100 Subject: [PATCH] remove some debug output --- src/OpenMesh/Core/Utils/PropertyCreator.hh | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/OpenMesh/Core/Utils/PropertyCreator.hh b/src/OpenMesh/Core/Utils/PropertyCreator.hh index c686efb4..012f1f20 100644 --- a/src/OpenMesh/Core/Utils/PropertyCreator.hh +++ b/src/OpenMesh/Core/Utils/PropertyCreator.hh @@ -211,7 +211,6 @@ public: for (auto pc : property_creators_) if (pc->type_string() == _property_creator->type_string()) { - omlog() << "Property creator for type " << pc->type_string() << " already exists. Property creator will be ignored." << std::endl; if (pc->type_id_string() != _property_creator->type_id_string()) { omerr() << "And it looks like you are trying to add a different type with an already existing string identification." << std::endl; @@ -219,8 +218,6 @@ public: } return; } - - omlog() << "Adding property creator for type " << _property_creator->type_string() << std::endl; property_creators_.push_back(_property_creator); }