aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-08-30 21:23:19 +0100
committerJustin Clark-Casey (justincc)2010-08-30 21:23:19 +0100
commit3cd7761d65270531f6db4091a3702179bf41316e (patch)
treebadb63631fb4d9cb21622691d213fa4d6a770ba2
parentReplace hardcoded 0 with KickFlags provided by the client. (diff)
downloadopensim-SC_OLD-3cd7761d65270531f6db4091a3702179bf41316e.zip
opensim-SC_OLD-3cd7761d65270531f6db4091a3702179bf41316e.tar.gz
opensim-SC_OLD-3cd7761d65270531f6db4091a3702179bf41316e.tar.bz2
opensim-SC_OLD-3cd7761d65270531f6db4091a3702179bf41316e.tar.xz
Report exception message as well as stack trace if a region fails to register with the grid service in grid mode
-rw-r--r--OpenSim/Region/Application/OpenSimBase.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs
index b80d17d..526d3b5 100644
--- a/OpenSim/Region/Application/OpenSimBase.cs
+++ b/OpenSim/Region/Application/OpenSimBase.cs
@@ -356,7 +356,9 @@ namespace OpenSim
356 } 356 }
357 catch (Exception e) 357 catch (Exception e)
358 { 358 {
359 m_log.ErrorFormat("[STARTUP]: Registration of region with grid failed, aborting startup - {0}", e.StackTrace); 359 m_log.ErrorFormat(
360 "[STARTUP]: Registration of region with grid failed, aborting startup due to {0} {1}",
361 e.Message, e.StackTrace);
360 362
361 // Carrying on now causes a lot of confusion down the 363 // Carrying on now causes a lot of confusion down the
362 // line - we need to get the user's attention 364 // line - we need to get the user's attention