diff options
author | Tedd Hansen | 2007-08-26 14:04:22 +0000 |
---|---|---|
committer | Tedd Hansen | 2007-08-26 14:04:22 +0000 |
commit | 83d5df39791c4778e791f9bdb0fca0c30a20a793 (patch) | |
tree | faed1054d9e3f5c1cba5084c75572c4c80e0d1f3 /OpenSim/Region/ScriptEngine/DotNetEngine/EventQueueManager.cs | |
parent | Run-time script errors are now shown in-world. No line number though, might r... (diff) | |
download | opensim-SC_OLD-83d5df39791c4778e791f9bdb0fca0c30a20a793.zip opensim-SC_OLD-83d5df39791c4778e791f9bdb0fca0c30a20a793.tar.gz opensim-SC_OLD-83d5df39791c4778e791f9bdb0fca0c30a20a793.tar.bz2 opensim-SC_OLD-83d5df39791c4778e791f9bdb0fca0c30a20a793.tar.xz |
in-world run-time error-message no-w con-tains function-name.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/DotNetEngine/EventQueueManager.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/DotNetEngine/EventQueueManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/DotNetEngine/EventQueueManager.cs b/OpenSim/Region/ScriptEngine/DotNetEngine/EventQueueManager.cs index c724f01..4f65b13 100644 --- a/OpenSim/Region/ScriptEngine/DotNetEngine/EventQueueManager.cs +++ b/OpenSim/Region/ScriptEngine/DotNetEngine/EventQueueManager.cs | |||
@@ -180,7 +180,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine | |||
180 | catch (Exception e) | 180 | catch (Exception e) |
181 | { | 181 | { |
182 | // DISPLAY ERROR INWORLD | 182 | // DISPLAY ERROR INWORLD |
183 | string text = "Error executing script:\r\n"; | 183 | string text = "Error executing script function \"" + QIS.FunctionName + "\":\r\n"; |
184 | if (e.InnerException != null) | 184 | if (e.InnerException != null) |
185 | { // Send inner exception | 185 | { // Send inner exception |
186 | text += e.InnerException.Message.ToString(); | 186 | text += e.InnerException.Message.ToString(); |