From 603afefaab7833d3fc70de79874130df3b6a432e Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Fri, 8 May 2015 14:16:38 -0700 Subject: [PATCH] silence verbose no-very-helpful log message --- libraries/physics/src/PhysicalEntitySimulation.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/physics/src/PhysicalEntitySimulation.cpp b/libraries/physics/src/PhysicalEntitySimulation.cpp index ed7b986800..50e81b4788 100644 --- a/libraries/physics/src/PhysicalEntitySimulation.cpp +++ b/libraries/physics/src/PhysicalEntitySimulation.cpp @@ -167,7 +167,8 @@ VectorOfMotionStates& PhysicalEntitySimulation::getObjectsToAdd() { _tempVector.push_back(motionState); entityItr = _pendingAdds.erase(entityItr); } else { - qDebug() << "Warning! Failed to generate new shape for entity." << entity->getName(); + // TODO: Seth to look into why this case is hit. + //qDebug() << "Warning! Failed to generate new shape for entity." << entity->getName(); ++entityItr; } } else {