remove logging, now that we have error logging

This commit is contained in:
howard-stearns 2017-01-25 17:04:09 -08:00
parent 1c30da42af
commit 4437063a3a

View file

@ -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;