mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
Merge pull request #15550 from huffman/fix/gettransform-spam
BUGZ-89: Suppress getTransform spam
This commit is contained in:
commit
53b80ba404
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue