BUGZ-89: Suppress getTransform spam

This commit is contained in:
Ryan Huffman 2019-05-13 13:04:46 -07:00
parent 51f2d1748e
commit 2e2d0add93

View file

@ -758,7 +758,11 @@ const Transform SpatiallyNestable::getTransform() const {
bool success; bool success;
Transform result = getTransform(success); Transform result = getTransform(success);
if (!success) { if (!success) {
qCDebug(shared) << "getTransform failed for" << getID(); // There is a known issue related to child entities not being deleted
// when their parent is removed. This has the side-effect that the
// logs will be spammed with the following message. Until this is
// fixed, this log message will be suppressed.
//qCDebug(shared) << "getTransform failed for" << getID();
} }
return result; return result;
} }