diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Application/Application.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/Application.cs b/OpenSim/Region/Application/Application.cs index 0f00d43..8f5c87e 100644 --- a/OpenSim/Region/Application/Application.cs +++ b/OpenSim/Region/Application/Application.cs | |||
@@ -95,11 +95,12 @@ namespace OpenSim | |||
95 | msg += "APPLICATION EXCEPTION DETECTED\r\n"; | 95 | msg += "APPLICATION EXCEPTION DETECTED\r\n"; |
96 | msg += "\r\n"; | 96 | msg += "\r\n"; |
97 | msg += "Application is terminating: " + e.IsTerminating.ToString() + "\r\n"; | 97 | msg += "Application is terminating: " + e.IsTerminating.ToString() + "\r\n"; |
98 | msg += "Exception:"; | ||
99 | msg += e.ExceptionObject.ToString(); | ||
100 | if (e.IsTerminating) | 98 | if (e.IsTerminating) |
101 | Console.WriteLine(msg); | 99 | Console.WriteLine(msg); |
102 | 100 | ||
101 | msg += "Exception:"; | ||
102 | msg += e.ExceptionObject.ToString(); | ||
103 | |||
103 | // Try to post errormessage to an URL | 104 | // Try to post errormessage to an URL |
104 | try | 105 | try |
105 | { | 106 | { |