* minor: comment out a few more [de]serialization sog timing messages

GenericGridServerConcept
Justin Clarke Casey 2009-02-18 20:04:14 +00:00
parent a7dea4ee12
commit d971b9f06b
1 changed files with 3 additions and 3 deletions

View File

@ -479,7 +479,7 @@ namespace OpenSim.Region.Framework.Scenes
reader.Close();
sr.Close();
m_log.DebugFormat("[SOG]: Finished deserialization of SOG {0}, {1}ms", Name, System.Environment.TickCount - time);
//m_log.DebugFormat("[SOG]: Finished deserialization of SOG {0}, {1}ms", Name, System.Environment.TickCount - time);
}
/// <summary>
@ -768,7 +768,7 @@ namespace OpenSim.Region.Framework.Scenes
public void ToXml2(XmlTextWriter writer)
{
m_log.DebugFormat("[SOG]: Starting serialization of SOG {0} to XML2", Name);
//m_log.DebugFormat("[SOG]: Starting serialization of SOG {0} to XML2", Name);
int time = System.Environment.TickCount;
writer.WriteStartElement(String.Empty, "SceneObjectGroup", String.Empty);
@ -788,7 +788,7 @@ namespace OpenSim.Region.Framework.Scenes
writer.WriteEndElement();
writer.WriteEndElement();
m_log.DebugFormat("[SOG]: Finished serialization of SOG {0} to XML2, {1}ms", Name, System.Environment.TickCount - time);
//m_log.DebugFormat("[SOG]: Finished serialization of SOG {0} to XML2, {1}ms", Name, System.Environment.TickCount - time);
}
/// <summary>