aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
index 18818e7..7436d75 100644
--- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
@@ -424,7 +424,7 @@ namespace OpenSim.Region.Environment.Scenes
424 if (!isOriginalXmlFormat) 424 if (!isOriginalXmlFormat)
425 throw new Exception("This constructor must specify the xml is in OpenSim's original format"); 425 throw new Exception("This constructor must specify the xml is in OpenSim's original format");
426 426
427 m_log.DebugFormat("[SOG]: Starting deserialization of SOG"); 427 //m_log.DebugFormat("[SOG]: Starting deserialization of SOG");
428 int time = System.Environment.TickCount; 428 int time = System.Environment.TickCount;
429 429
430 // libomv.types changes UUID to Guid 430 // libomv.types changes UUID to Guid
@@ -491,8 +491,8 @@ namespace OpenSim.Region.Environment.Scenes
491 491
492 protected void SetFromXml(string xmlData) 492 protected void SetFromXml(string xmlData)
493 { 493 {
494 m_log.DebugFormat("[SOG]: Starting deserialization of SOG"); 494 //m_log.DebugFormat("[SOG]: Starting deserialization of SOG");
495 int time = System.Environment.TickCount; 495 //int time = System.Environment.TickCount;
496 496
497 // libomv.types changes UUID to Guid 497 // libomv.types changes UUID to Guid
498 xmlData = xmlData.Replace("<UUID>", "<Guid>"); 498 xmlData = xmlData.Replace("<UUID>", "<Guid>");
@@ -539,7 +539,7 @@ namespace OpenSim.Region.Environment.Scenes
539 reader.Close(); 539 reader.Close();
540 sr.Close(); 540 sr.Close();
541 541
542 m_log.DebugFormat("[SOG]: Finished deserialization of SOG {0}, {1}ms", Name, System.Environment.TickCount - time); 542 //m_log.DebugFormat("[SOG]: Finished deserialization of SOG {0}, {1}ms", Name, System.Environment.TickCount - time);
543 } 543 }
544 544
545 protected virtual SceneObjectPart CreatePartFromXml(XmlTextReader reader) 545 protected virtual SceneObjectPart CreatePartFromXml(XmlTextReader reader)