diff --git a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs index 62b6a7fac4..3c47e278fe 100644 --- a/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs +++ b/OpenSim/Region/Physics/OdePlugin/ODEPrim.cs @@ -598,7 +598,7 @@ namespace OpenSim.Region.Physics.OdePlugin if (Body != (IntPtr) 0) { float newmass = CalculateMass(); - m_log.Info("[PHYSICS]: New Mass: " + newmass.ToString()); + //m_log.Info("[PHYSICS]: New Mass: " + newmass.ToString()); if (newmass <= 0) newmass = 0.0001f; d.MassSetBoxTotal(out pMass, newmass, _size.X, _size.Y, _size.Z);