aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Capabilities
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-07-08 22:41:24 +0100
committerJustin Clark-Casey (justincc)2013-07-08 22:41:24 +0100
commit8be59829d1fcf4c4f42a1a859aef6aa5f4f29073 (patch)
treea07701ee51a285dbe2cfd1c1559a915f14e8ced8 /OpenSim/Capabilities
parentFor stat purposes, add names to capability request handlers where these were ... (diff)
downloadopensim-SC_OLD-8be59829d1fcf4c4f42a1a859aef6aa5f4f29073.zip
opensim-SC_OLD-8be59829d1fcf4c4f42a1a859aef6aa5f4f29073.tar.gz
opensim-SC_OLD-8be59829d1fcf4c4f42a1a859aef6aa5f4f29073.tar.bz2
opensim-SC_OLD-8be59829d1fcf4c4f42a1a859aef6aa5f4f29073.tar.xz
minor: Add back commented out logging message in Caps.RegisterHandler() that I accidentally removed.
Diffstat (limited to 'OpenSim/Capabilities')
-rw-r--r--OpenSim/Capabilities/Caps.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Capabilities/Caps.cs b/OpenSim/Capabilities/Caps.cs
index 1bed1a5..6c95d8b 100644
--- a/OpenSim/Capabilities/Caps.cs
+++ b/OpenSim/Capabilities/Caps.cs
@@ -143,6 +143,7 @@ namespace OpenSim.Framework.Capabilities
143 /// <param name="handler"></param> 143 /// <param name="handler"></param>
144 public void RegisterHandler(string capName, IRequestHandler handler) 144 public void RegisterHandler(string capName, IRequestHandler handler)
145 { 145 {
146 //m_log.DebugFormat("[CAPS]: Registering handler for \"{0}\": path {1}", capName, handler.Path);
146 m_capsHandlers[capName] = handler; 147 m_capsHandlers[capName] = handler;
147 } 148 }
148 149