From d1dbdd0ae11545a2204ef9bd6ffe58beadd674a7 Mon Sep 17 00:00:00 2001 From: Angeldark Raymaker Date: Fri, 26 Sep 2025 21:26:07 +0100 Subject: [PATCH] FIRE-35794: Tidy messaging --- indra/newview/fsjointpose.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/indra/newview/fsjointpose.h b/indra/newview/fsjointpose.h index 73e6602c72..1c279f1d6b 100644 --- a/indra/newview/fsjointpose.h +++ b/indra/newview/fsjointpose.h @@ -357,7 +357,6 @@ class FSJointPose if (rotation == LLQuaternion::DEFAULT) return; - LL_WARNS("Posing") << "Loaded rot: " << rotation << " at priority " << priority << LL_ENDL; mBasePriority = priority; mBaseRotation.set(rotation); } @@ -367,7 +366,6 @@ class FSJointPose if (priority < mBasePriority) return; - LL_WARNS("Posing") << "Loaded pos: " << position << " at priority " << priority << LL_ENDL; mBasePriority = priority; mBasePosition.set(position); } @@ -380,7 +378,6 @@ class FSJointPose if (scale.isExactlyZero()) return; - LL_WARNS("Posing") << "Loaded pos: " << scale << " at priority " << priority << LL_ENDL; mBasePriority = priority; mBaseScale.set(scale); }