* minor: remove serialization and deserializationg sog log messages for now

0.6.3-post-fixes
Justin Clarke Casey 2009-01-23 17:17:46 +00:00
parent 15cd1102e1
commit 227e88a6f4
1 changed files with 4 additions and 4 deletions

View File

@ -424,7 +424,7 @@ namespace OpenSim.Region.Environment.Scenes
if (!isOriginalXmlFormat) if (!isOriginalXmlFormat)
throw new Exception("This constructor must specify the xml is in OpenSim's original format"); throw new Exception("This constructor must specify the xml is in OpenSim's original format");
m_log.DebugFormat("[SOG]: Starting deserialization of SOG"); //m_log.DebugFormat("[SOG]: Starting deserialization of SOG");
int time = System.Environment.TickCount; int time = System.Environment.TickCount;
// libomv.types changes UUID to Guid // libomv.types changes UUID to Guid
@ -491,8 +491,8 @@ namespace OpenSim.Region.Environment.Scenes
protected void SetFromXml(string xmlData) protected void SetFromXml(string xmlData)
{ {
m_log.DebugFormat("[SOG]: Starting deserialization of SOG"); //m_log.DebugFormat("[SOG]: Starting deserialization of SOG");
int time = System.Environment.TickCount; //int time = System.Environment.TickCount;
// libomv.types changes UUID to Guid // libomv.types changes UUID to Guid
xmlData = xmlData.Replace("<UUID>", "<Guid>"); xmlData = xmlData.Replace("<UUID>", "<Guid>");
@ -539,7 +539,7 @@ namespace OpenSim.Region.Environment.Scenes
reader.Close(); reader.Close();
sr.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);
} }
protected virtual SceneObjectPart CreatePartFromXml(XmlTextReader reader) protected virtual SceneObjectPart CreatePartFromXml(XmlTextReader reader)