diff options
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs index 3a5cc23..dabb128 100644 --- a/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/ScriptEngineBase/EventQueueThreadClass.cs | |||
@@ -321,12 +321,12 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase | |||
321 | { | 321 | { |
322 | line = " at line " + Convert.ToInt32(t.Substring(colon + 6)).ToString(); | 322 | line = " at line " + Convert.ToInt32(t.Substring(colon + 6)).ToString(); |
323 | } | 323 | } |
324 | catch (ArgumentOutOfRangeException e) | 324 | catch (ArgumentOutOfRangeException e2) |
325 | { | 325 | { |
326 | // FIXME: Big fat temporary patch to stop the Substring above throwing an exception | 326 | // FIXME: Big fat temporary patch to stop the Substring above throwing an exception |
327 | // and stopping a proper kill of the script. We're making an unwarranted assumption | 327 | // and stopping a proper kill of the script. We're making an unwarranted assumption |
328 | // about the size of t. This needs to be fixed properly. | 328 | // about the size of t. This needs to be fixed properly. |
329 | m_log.ErrorFormat("[SCRIPT ENGINE]: Line number conversion exception {0}", e); | 329 | m_log.ErrorFormat("[SCRIPT ENGINE]: Error line number conversion exception {0}", e2); |
330 | line = " at line (unavailable)"; | 330 | line = " at line (unavailable)"; |
331 | } | 331 | } |
332 | 332 | ||