diff options
author | Justin Clark-Casey (justincc) | 2013-08-05 20:51:40 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-08-05 20:51:40 +0100 |
commit | 24dcf3cf6a95596ce0ac188a63bb5c2c4c47dcee (patch) | |
tree | ebac07d677bee3763c32ae3d91b73200a606e63b /OpenSim/Region | |
parent | At OpenSimulator startup, print out default min built-in threadpool threads a... (diff) | |
download | opensim-SC_OLD-24dcf3cf6a95596ce0ac188a63bb5c2c4c47dcee.zip opensim-SC_OLD-24dcf3cf6a95596ce0ac188a63bb5c2c4c47dcee.tar.gz opensim-SC_OLD-24dcf3cf6a95596ce0ac188a63bb5c2c4c47dcee.tar.bz2 opensim-SC_OLD-24dcf3cf6a95596ce0ac188a63bb5c2c4c47dcee.tar.xz |
Comment out debug log lines about script modules comms for now.
If this is an issue, could change log4net config instead to allow re-enablement
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/Scripting/ScriptModuleComms/ScriptModuleCommsModule.cs | 4 |
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); |