mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 20:16:16 +02:00
BUGZ-89: Suppress getTransform spam
This commit is contained in:
parent
51f2d1748e
commit
2e2d0add93
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue