aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Capabilities/LLSDHelpers.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/Capabilities/LLSDHelpers.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/LLSDHelpers.cs b/OpenSim/Framework/Communications/Capabilities/LLSDHelpers.cs
index bf47be7..a39f5aa 100644
--- a/OpenSim/Framework/Communications/Capabilities/LLSDHelpers.cs
+++ b/OpenSim/Framework/Communications/Capabilities/LLSDHelpers.cs
@@ -35,6 +35,9 @@ namespace OpenSim.Region.Capabilities
35{ 35{
36 public class LLSDHelpers 36 public class LLSDHelpers
37 { 37 {
38// private static readonly log4net.ILog m_log
39// = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
40
38 public static string SerialiseLLSDReply(object obj) 41 public static string SerialiseLLSDReply(object obj)
39 { 42 {
40 StringWriter sw = new StringWriter(); 43 StringWriter sw = new StringWriter();
@@ -44,6 +47,9 @@ namespace OpenSim.Region.Capabilities
44 SerializeLLSDType(writer, obj); 47 SerializeLLSDType(writer, obj);
45 writer.WriteEndElement(); 48 writer.WriteEndElement();
46 writer.Close(); 49 writer.Close();
50
51 //m_log.DebugFormat("[LLSD Helpers]: Generated serialized LLSD reply {0}", sw.ToString());
52
47 return sw.ToString(); 53 return sw.ToString();
48 } 54 }
49 55