From 171fead347f5cf2cb204f2ea24d08ddae66c3328 Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Mon, 19 Jan 2015 15:55:53 -0800 Subject: [PATCH] remove log about failure to add to physics engine --- libraries/physics/src/PhysicsEngine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/physics/src/PhysicsEngine.cpp b/libraries/physics/src/PhysicsEngine.cpp index e33e1a453c..90fd6c65cd 100644 --- a/libraries/physics/src/PhysicsEngine.cpp +++ b/libraries/physics/src/PhysicsEngine.cpp @@ -66,7 +66,7 @@ void PhysicsEngine::addEntityInternal(EntityItem* entity) { _entityMotionStates.insert(motionState); } else { // We failed to add the entity to the simulation. Probably because we couldn't create a shape for it. - qDebug() << "failed to add entity " << entity->getEntityItemID() << " to physics engine"; + //qDebug() << "failed to add entity " << entity->getEntityItemID() << " to physics engine"; delete motionState; } }