aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules
diff options
context:
space:
mode:
authorDiva Canto2013-08-05 14:21:39 -0700
committerDiva Canto2013-08-05 14:21:39 -0700
commit2d3ac2b1ec321d7d6418d548872dcecdbc3cb14c (patch)
treeca9a354c5a10d40679101e20ffce27afe6d257ea /OpenSim/Region/CoreModules
parentChild agent updates: remove the dependency on the root agent's camera positio... (diff)
parentComment out debug log lines about script modules comms for now. (diff)
downloadopensim-SC-2d3ac2b1ec321d7d6418d548872dcecdbc3cb14c.zip
opensim-SC-2d3ac2b1ec321d7d6418d548872dcecdbc3cb14c.tar.gz
opensim-SC-2d3ac2b1ec321d7d6418d548872dcecdbc3cb14c.tar.bz2
opensim-SC-2d3ac2b1ec321d7d6418d548872dcecdbc3cb14c.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r--OpenSim/Region/CoreModules/Scripting/ScriptModuleComms/ScriptModuleCommsModule.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/Scripting/ScriptModuleComms/ScriptModuleCommsModule.cs b/OpenSim/Region/CoreModules/Scripting/ScriptModuleComms/ScriptModuleCommsModule.cs
index 6bf50d2..a515346 100644
--- a/OpenSim/Region/CoreModules/Scripting/ScriptModuleComms/ScriptModuleCommsModule.cs
+++ b/OpenSim/Region/CoreModules/Scripting/ScriptModuleComms/ScriptModuleCommsModule.cs
@@ -163,7 +163,7 @@ namespace OpenSim.Region.CoreModules.Scripting.ScriptModuleComms
163 163
164 public void RegisterScriptInvocation(object target, MethodInfo mi) 164 public void RegisterScriptInvocation(object target, MethodInfo mi)
165 { 165 {
166 m_log.DebugFormat("[MODULE COMMANDS] Register method {0} from type {1}", mi.Name, (target is Type) ? ((Type)target).Name : target.GetType().Name); 166// m_log.DebugFormat("[MODULE COMMANDS] Register method {0} from type {1}", mi.Name, (target is Type) ? ((Type)target).Name : target.GetType().Name);
167 167
168 Type delegateType; 168 Type delegateType;
169 List<Type> typeArgs = mi.GetParameters() 169 List<Type> typeArgs = mi.GetParameters()
@@ -323,7 +323,7 @@ namespace OpenSim.Region.CoreModules.Scripting.ScriptModuleComms
323 /// </summary> 323 /// </summary>
324 public void RegisterConstant(string cname, object value) 324 public void RegisterConstant(string cname, object value)
325 { 325 {
326 m_log.DebugFormat("[MODULE COMMANDS] register constant <{0}> with value {1}",cname,value.ToString()); 326// m_log.DebugFormat("[MODULE COMMANDS] register constant <{0}> with value {1}",cname,value.ToString());
327 lock (m_constants) 327 lock (m_constants)
328 { 328 {
329 m_constants.Add(cname,value); 329 m_constants.Add(cname,value);