diff options
author | Justin Clark-Casey (justincc) | 2012-03-22 23:31:41 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-03-22 23:31:41 +0000 |
commit | 15c2499ccdaf3b461a17557ae473e942dd62a26e (patch) | |
tree | 0333991a9949a4f5f54b95e64f1664348ddd058c /OpenSim/Server/Handlers | |
parent | Comment out a terrain save-tile debugging message that accidentally crept in ... (diff) | |
download | opensim-SC_OLD-15c2499ccdaf3b461a17557ae473e942dd62a26e.zip opensim-SC_OLD-15c2499ccdaf3b461a17557ae473e942dd62a26e.tar.gz opensim-SC_OLD-15c2499ccdaf3b461a17557ae473e942dd62a26e.tar.bz2 opensim-SC_OLD-15c2499ccdaf3b461a17557ae473e942dd62a26e.tar.xz |
Comment out login parameters debug output accidentally included with c4b2d24
Diffstat (limited to 'OpenSim/Server/Handlers')
-rw-r--r-- | OpenSim/Server/Handlers/Login/LLLoginHandlers.cs | 24 |
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 && ( |