diff options
author | Justin Clarke Casey | 2009-02-18 20:04:14 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-02-18 20:04:14 +0000 |
commit | d971b9f06bec198f2559cd160a6e5719a6231c68 (patch) | |
tree | e4c62af1f43429c05279c9349433f6fb34c9c142 /OpenSim | |
parent | * Move asset gathering code from oar module to OpenSim.Region.Framework since... (diff) | |
download | opensim-SC_OLD-d971b9f06bec198f2559cd160a6e5719a6231c68.zip opensim-SC_OLD-d971b9f06bec198f2559cd160a6e5719a6231c68.tar.gz opensim-SC_OLD-d971b9f06bec198f2559cd160a6e5719a6231c68.tar.bz2 opensim-SC_OLD-d971b9f06bec198f2559cd160a6e5719a6231c68.tar.xz |
* minor: comment out a few more [de]serialization sog timing messages
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index 1b7ae16..6d0927b 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -479,7 +479,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
479 | 479 | ||
480 | reader.Close(); | 480 | reader.Close(); |
481 | sr.Close(); | 481 | sr.Close(); |
482 | m_log.DebugFormat("[SOG]: Finished deserialization of SOG {0}, {1}ms", Name, System.Environment.TickCount - time); | 482 | //m_log.DebugFormat("[SOG]: Finished deserialization of SOG {0}, {1}ms", Name, System.Environment.TickCount - time); |
483 | } | 483 | } |
484 | 484 | ||
485 | /// <summary> | 485 | /// <summary> |
@@ -768,7 +768,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
768 | 768 | ||
769 | public void ToXml2(XmlTextWriter writer) | 769 | public void ToXml2(XmlTextWriter writer) |
770 | { | 770 | { |
771 | m_log.DebugFormat("[SOG]: Starting serialization of SOG {0} to XML2", Name); | 771 | //m_log.DebugFormat("[SOG]: Starting serialization of SOG {0} to XML2", Name); |
772 | int time = System.Environment.TickCount; | 772 | int time = System.Environment.TickCount; |
773 | 773 | ||
774 | writer.WriteStartElement(String.Empty, "SceneObjectGroup", String.Empty); | 774 | writer.WriteStartElement(String.Empty, "SceneObjectGroup", String.Empty); |
@@ -788,7 +788,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
788 | 788 | ||
789 | writer.WriteEndElement(); | 789 | writer.WriteEndElement(); |
790 | writer.WriteEndElement(); | 790 | writer.WriteEndElement(); |
791 | m_log.DebugFormat("[SOG]: Finished serialization of SOG {0} to XML2, {1}ms", Name, System.Environment.TickCount - time); | 791 | //m_log.DebugFormat("[SOG]: Finished serialization of SOG {0} to XML2, {1}ms", Name, System.Environment.TickCount - time); |
792 | } | 792 | } |
793 | 793 | ||
794 | /// <summary> | 794 | /// <summary> |