aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-03-22 23:31:41 +0000
committerJustin Clark-Casey (justincc)2012-03-22 23:33:08 +0000
commit4dbf9377075d446f005a383a474ea22c463ac57d (patch)
tree76f5c7d7542ae273dc36a530efd1d5702dfb4ad7
parentComment out a terrain save-tile debugging message that accidentally crept in ... (diff)
downloadopensim-SC_OLD-4dbf9377075d446f005a383a474ea22c463ac57d.zip
opensim-SC_OLD-4dbf9377075d446f005a383a474ea22c463ac57d.tar.gz
opensim-SC_OLD-4dbf9377075d446f005a383a474ea22c463ac57d.tar.bz2
opensim-SC_OLD-4dbf9377075d446f005a383a474ea22c463ac57d.tar.xz
Comment out login parameters debug output accidentally included with c4b2d24
-rw-r--r--OpenSim/Server/Handlers/Login/LLLoginHandlers.cs24
1 files changed, 13 insertions, 11 deletions
diff --git a/OpenSim/Server/Handlers/Login/LLLoginHandlers.cs b/OpenSim/Server/Handlers/Login/LLLoginHandlers.cs
index ed62f95..f83a239 100644
--- a/OpenSim/Server/Handlers/Login/LLLoginHandlers.cs
+++ b/OpenSim/Server/Handlers/Login/LLLoginHandlers.cs
@@ -73,17 +73,19 @@ namespace OpenSim.Server.Handlers.Login
73 73
74 if (requestData != null) 74 if (requestData != null)
75 { 75 {
76 foreach (string key in requestData.Keys) 76 // Debug code to show exactly what login parameters the viewer is sending us.
77 { 77 // TODO: Extract into a method that can be generally applied if one doesn't already exist.
78 object value = requestData[key]; 78// foreach (string key in requestData.Keys)
79 Console.WriteLine("{0}:{1}", key, value); 79// {
80 if (value is ArrayList) 80// object value = requestData[key];
81 { 81// Console.WriteLine("{0}:{1}", key, value);
82 ICollection col = value as ICollection; 82// if (value is ArrayList)
83 foreach (object item in col) 83// {
84 Console.WriteLine(" {0}", item); 84// ICollection col = value as ICollection;
85 } 85// foreach (object item in col)
86 } 86// Console.WriteLine(" {0}", item);
87// }
88// }
87 89
88 if (requestData.ContainsKey("first") && requestData["first"] != null && 90 if (requestData.ContainsKey("first") && requestData["first"] != null &&
89 requestData.ContainsKey("last") && requestData["last"] != null && ( 91 requestData.ContainsKey("last") && requestData["last"] != null && (