diff options
Diffstat (limited to 'OpenSim/Grid/ScriptServer/Application.cs')
-rw-r--r-- | OpenSim/Grid/ScriptServer/Application.cs | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/OpenSim/Grid/ScriptServer/Application.cs b/OpenSim/Grid/ScriptServer/Application.cs index 7fc9a53..e049fd7 100644 --- a/OpenSim/Grid/ScriptServer/Application.cs +++ b/OpenSim/Grid/ScriptServer/Application.cs | |||
@@ -26,25 +26,23 @@ | |||
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | ||
30 | using System.Text; | ||
31 | 29 | ||
32 | namespace OpenSim.Grid.ScriptServer | 30 | namespace OpenSim.Grid.ScriptServer |
33 | { | 31 | { |
34 | class OpenScript_Main | 32 | internal class OpenScript_Main |
35 | { | 33 | { |
36 | |||
37 | public static ScriptServerMain SE; | 34 | public static ScriptServerMain SE; |
38 | 35 | ||
39 | static void Main(string[] args) | 36 | private static void Main(string[] args) |
40 | { | 37 | { |
41 | // Application is starting | 38 | // Application is starting |
42 | SE = new ScriptServerMain(); | 39 | SE = new ScriptServerMain(); |
43 | 40 | ||
44 | System.AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); | 41 | AppDomain.CurrentDomain.UnhandledException += |
42 | new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); | ||
45 | } | 43 | } |
46 | 44 | ||
47 | static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) | 45 | private static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e) |
48 | { | 46 | { |
49 | Console.WriteLine(""); | 47 | Console.WriteLine(""); |
50 | Console.WriteLine("APPLICATION EXCEPTION DETECTED"); | 48 | Console.WriteLine("APPLICATION EXCEPTION DETECTED"); |
@@ -53,6 +51,5 @@ namespace OpenSim.Grid.ScriptServer | |||
53 | Console.WriteLine("Exception:"); | 51 | Console.WriteLine("Exception:"); |
54 | Console.WriteLine(e.ExceptionObject.ToString()); | 52 | Console.WriteLine(e.ExceptionObject.ToString()); |
55 | } | 53 | } |
56 | |||
57 | } | 54 | } |
58 | } | 55 | } \ No newline at end of file |