Merge pull request #15550 from huffman/fix/gettransform-spam

BUGZ-89: Suppress getTransform spam
This commit is contained in:
Shannon Romano 2019-05-13 16:13:46 -07:00 committed by GitHub
commit 53b80ba404
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -758,7 +758,11 @@ const Transform SpatiallyNestable::getTransform() const {
bool success;
Transform result = getTransform(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;
}