From 2e2d0add93ce18fbbbc5eba2c9dcc4751010bb5d Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Mon, 13 May 2019 13:04:46 -0700 Subject: [PATCH] BUGZ-89: Suppress getTransform spam --- libraries/shared/src/SpatiallyNestable.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libraries/shared/src/SpatiallyNestable.cpp b/libraries/shared/src/SpatiallyNestable.cpp index 866698adeb..f49921f272 100644 --- a/libraries/shared/src/SpatiallyNestable.cpp +++ b/libraries/shared/src/SpatiallyNestable.cpp @@ -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; }