diff options
author | Tedd Hansen | 2008-01-02 15:58:33 +0000 |
---|---|---|
committer | Tedd Hansen | 2008-01-02 15:58:33 +0000 |
commit | 198dea28add519a5cd14b47a01345cf4207b4ee3 (patch) | |
tree | d04822584c5634aaa07c7c7550c0dde3668d739e /OpenSim/Grid/ScriptServer/Application.cs | |
parent | * Fixed an issue where the PacketPool would ZeroDecodeCommand into a too smal... (diff) | |
download | opensim-SC_OLD-198dea28add519a5cd14b47a01345cf4207b4ee3.zip opensim-SC_OLD-198dea28add519a5cd14b47a01345cf4207b4ee3.tar.gz opensim-SC_OLD-198dea28add519a5cd14b47a01345cf4207b4ee3.tar.bz2 opensim-SC_OLD-198dea28add519a5cd14b47a01345cf4207b4ee3.tar.xz |
Full .dll-name in config option for ScriptEngine. Loading only scriptengine specified in config.
ScriptServer will still not start!
Diffstat (limited to 'OpenSim/Grid/ScriptServer/Application.cs')
-rw-r--r-- | OpenSim/Grid/ScriptServer/Application.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Grid/ScriptServer/Application.cs b/OpenSim/Grid/ScriptServer/Application.cs index 5076618..7b62727 100644 --- a/OpenSim/Grid/ScriptServer/Application.cs +++ b/OpenSim/Grid/ScriptServer/Application.cs | |||
@@ -35,11 +35,12 @@ namespace OpenSim.Grid.ScriptServer | |||
35 | 35 | ||
36 | private static void Main(string[] args) | 36 | private static void Main(string[] args) |
37 | { | 37 | { |
38 | AppDomain.CurrentDomain.UnhandledException += | ||
39 | new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); | ||
40 | |||
38 | // Application is starting | 41 | // Application is starting |
39 | SE = new ScriptServerMain(); | 42 | SE = new ScriptServerMain(); |
40 | 43 | ||
41 | AppDomain.CurrentDomain.UnhandledException += | ||
42 | new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); | ||
43 | } | 44 | } |
44 | 45 | ||
45 | private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) | 46 | private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) |