diff options
author | David Walter Seikel | 2016-11-22 16:57:41 +1000 |
---|---|---|
committer | David Walter Seikel | 2016-11-22 16:57:41 +1000 |
commit | 848035bf7228628b5f035c1de5d71cd6150dc7ce (patch) | |
tree | 70f23ab04d84da76959c6a54f0e5a710f43e1f4f /OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs | |
parent | Various random white space clean ups. (diff) | |
download | opensim-SC-848035bf7228628b5f035c1de5d71cd6150dc7ce.zip opensim-SC-848035bf7228628b5f035c1de5d71cd6150dc7ce.tar.gz opensim-SC-848035bf7228628b5f035c1de5d71cd6150dc7ce.tar.bz2 opensim-SC-848035bf7228628b5f035c1de5d71cd6150dc7ce.tar.xz |
Remove zero length XML blob spam.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs b/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs index 8f2c146..1ff788e 100644 --- a/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs +++ b/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs | |||
@@ -70,8 +70,9 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
70 | } | 70 | } |
71 | catch (Exception e) | 71 | catch (Exception e) |
72 | { | 72 | { |
73 | m_log.Error("[SERIALIZER]: Deserialization of xml failed ", e); | 73 | m_log.Error("[SERIALIZER]: Deserialization of xml failed "); |
74 | Util.LogFailedXML("[SERIALIZER]:", fixedData); | 74 | //// m_log.Error("[SERIALIZER]: Deserialization of xml failed ", e); |
75 | //// Util.LogFailedXML("[SERIALIZER]:", fixedData); | ||
75 | return null; | 76 | return null; |
76 | } | 77 | } |
77 | } | 78 | } |
@@ -283,8 +284,9 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
283 | } | 284 | } |
284 | catch (Exception e) | 285 | catch (Exception e) |
285 | { | 286 | { |
286 | m_log.Error("[SERIALIZER]: Deserialization of xml failed ", e); | 287 | m_log.Error("[SERIALIZER]: Deserialization of xml failed "); |
287 | Util.LogFailedXML("[SERIALIZER]:", xmlData); | 288 | //// m_log.Error("[SERIALIZER]: Deserialization of xml failed ", e); |
289 | //// Util.LogFailedXML("[SERIALIZER]:", xmlData); | ||
288 | return null; | 290 | return null; |
289 | } | 291 | } |
290 | } | 292 | } |