diff options
Diffstat (limited to 'OpenSim/Framework/Communications/Capabilities')
-rw-r--r-- | OpenSim/Framework/Communications/Capabilities/Caps.cs | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/Caps.cs b/OpenSim/Framework/Communications/Capabilities/Caps.cs index 91acfbe..6adf68c 100644 --- a/OpenSim/Framework/Communications/Capabilities/Caps.cs +++ b/OpenSim/Framework/Communications/Capabilities/Caps.cs | |||
@@ -157,7 +157,9 @@ namespace OpenSim.Framework.Communications.Capabilities | |||
157 | { | 157 | { |
158 | // the root of all evil | 158 | // the root of all evil |
159 | m_capsHandlers["SEED"] = new RestStreamHandler("POST", capsBase + m_requestPath, CapsRequest); | 159 | m_capsHandlers["SEED"] = new RestStreamHandler("POST", capsBase + m_requestPath, CapsRequest); |
160 | m_log.Warn("[SEED]: " + capsBase + m_requestPath); | 160 | m_log.DebugFormat( |
161 | "[CAPS]: Registering seed capability {0} for {1}", capsBase + m_requestPath, m_agentID); | ||
162 | |||
161 | //m_capsHandlers["MapLayer"] = | 163 | //m_capsHandlers["MapLayer"] = |
162 | // new LLSDStreamhandler<OSDMapRequest, OSDMapLayerResponse>("POST", | 164 | // new LLSDStreamhandler<OSDMapRequest, OSDMapLayerResponse>("POST", |
163 | // capsBase + m_mapLayerPath, | 165 | // capsBase + m_mapLayerPath, |
@@ -209,7 +211,7 @@ namespace OpenSim.Framework.Communications.Capabilities | |||
209 | public void RegisterHandler(string capName, IRequestHandler handler) | 211 | public void RegisterHandler(string capName, IRequestHandler handler) |
210 | { | 212 | { |
211 | m_capsHandlers[capName] = handler; | 213 | m_capsHandlers[capName] = handler; |
212 | m_log.DebugFormat("[CAPS]: Registering handler for \"{0}\": path {1}", capName, handler.Path); | 214 | //m_log.DebugFormat("[CAPS]: Registering handler for \"{0}\": path {1}", capName, handler.Path); |
213 | } | 215 | } |
214 | 216 | ||
215 | /// <summary> | 217 | /// <summary> |
@@ -242,10 +244,12 @@ namespace OpenSim.Framework.Communications.Capabilities | |||
242 | public string CapsRequest(string request, string path, string param, | 244 | public string CapsRequest(string request, string path, string param, |
243 | OSHttpRequest httpRequest, OSHttpResponse httpResponse) | 245 | OSHttpRequest httpRequest, OSHttpResponse httpResponse) |
244 | { | 246 | { |
245 | m_log.Debug("[CAPS]: Seed Caps Request in region: " + m_regionName); | 247 | //m_log.Debug("[CAPS]: Seed Caps Request in region: " + m_regionName); |
246 | //Console.WriteLine("caps request " + request); | 248 | |
247 | string result = LLSDHelpers.SerialiseLLSDReply(m_capsHandlers.CapsDetails); | 249 | string result = LLSDHelpers.SerialiseLLSDReply(m_capsHandlers.CapsDetails); |
250 | |||
248 | //m_log.DebugFormat("[CAPS] CapsRequest {0}", result); | 251 | //m_log.DebugFormat("[CAPS] CapsRequest {0}", result); |
252 | |||
249 | return result; | 253 | return result; |
250 | } | 254 | } |
251 | 255 | ||