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