aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-01-23 17:17:46 +0000
committerJustin Clarke Casey2009-01-23 17:17:46 +0000
commit227e88a6f4006799be0287377c8ffd2ea49d8a27 (patch)
treed3c94d27cee72e0a7ed73e0c3804eadaf5ced6e6 /OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs
parent* minor: small tweak to archive save completion log message (diff)
downloadopensim-SC_OLD-227e88a6f4006799be0287377c8ffd2ea49d8a27.zip
opensim-SC_OLD-227e88a6f4006799be0287377c8ffd2ea49d8a27.tar.gz
opensim-SC_OLD-227e88a6f4006799be0287377c8ffd2ea49d8a27.tar.bz2
opensim-SC_OLD-227e88a6f4006799be0287377c8ffd2ea49d8a27.tar.xz
* minor: remove serialization and deserializationg sog log messages for now
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectGroup.cs')
-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)