From e207284fefa60637e35405ebc87e5e151bd2eabd Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Sun, 10 Feb 2008 01:57:59 +0000 Subject: Clean up logging calls using String.Format explicitly --- OpenSim/Region/Physics/Meshing/SimpleHull.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'OpenSim/Region/Physics/Meshing/SimpleHull.cs') diff --git a/OpenSim/Region/Physics/Meshing/SimpleHull.cs b/OpenSim/Region/Physics/Meshing/SimpleHull.cs index e9cce3b..91df98f 100644 --- a/OpenSim/Region/Physics/Meshing/SimpleHull.cs +++ b/OpenSim/Region/Physics/Meshing/SimpleHull.cs @@ -246,8 +246,8 @@ namespace OpenSim.Region.Physics.Meshing bool intersects = false; //m_log.Debug("State before intersection detection"); - //m_log.Debug(String.Format("The baseHull is:\n{1}", 0, baseHullClone.ToString())); - //m_log.Debug(String.Format("The otherHull is:\n{1}", 0, otherHullClone.ToString())); + //m_log.DebugFormat("The baseHull is:\n{1}", 0, baseHullClone.ToString()); + //m_log.DebugFormat("The otherHull is:\n{1}", 0, otherHullClone.ToString()); { int iBase, iOther; @@ -277,7 +277,7 @@ namespace OpenSim.Region.Physics.Meshing } //m_log.Debug("State after intersection detection for the base hull"); - //m_log.Debug(String.Format("The baseHull is:\n{1}", 0, baseHullClone.ToString())); + //m_log.DebugFormat("The baseHull is:\n{1}", 0, baseHullClone.ToString()); { int iOther, iBase; @@ -306,7 +306,7 @@ namespace OpenSim.Region.Physics.Meshing } //m_log.Debug("State after intersection detection for the base hull"); - //m_log.Debug(String.Format("The otherHull is:\n{1}", 0, otherHullClone.ToString())); + //m_log.DebugFormat("The otherHull is:\n{1}", 0, otherHullClone.ToString()); bool otherIsInBase = baseHullClone.containsPointsFrom(otherHullClone); @@ -389,7 +389,7 @@ namespace OpenSim.Region.Physics.Meshing done = true; } - //m_log.Debug(String.Format("The resulting Hull is:\n{1}", 0, result.ToString())); + //m_log.DebugFormat("The resulting Hull is:\n{1}", 0, result.ToString()); return result; } -- cgit v1.1