From 4437063a3ae95d212efeb06e54ca1f92e9a0fdeb Mon Sep 17 00:00:00 2001 From: howard-stearns Date: Wed, 25 Jan 2017 17:04:09 -0800 Subject: [PATCH] remove logging, now that we have error logging --- libraries/entities/src/EntityTree.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/libraries/entities/src/EntityTree.cpp b/libraries/entities/src/EntityTree.cpp index 90c33ea572..6795eb7ef9 100644 --- a/libraries/entities/src/EntityTree.cpp +++ b/libraries/entities/src/EntityTree.cpp @@ -957,14 +957,6 @@ bool EntityTree::filterProperties(EntityItemProperties& propertiesIn, EntityItem // Javascript objects are == only if they are the same object. To compare arbitrary values, we need to use JSON. auto out = QJsonValue::fromVariant(result.toVariant()); wasChanged = in != out; - if (wasChanged) { - // Logging will be removed eventually, but for now, the behavior is so fragile that it's worth logging. - qCDebug(entities) << "filter accepted. changed: true"; - qCDebug(entities) << " in:" << in; - qCDebug(entities) << " out:" << out; - } - } else { - qCDebug(entities) << "filter rejected. in:" << in; } return accepted;