aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-09-07 03:34:44 +0000
committerJustin Clarke Casey2008-09-07 03:34:44 +0000
commitb9acf3ac5e5239c14a8f46c101d6470ffb2675d3 (patch)
tree99e78b932aaa6db2e00ab0451d7505e16e660a77
parent* minor: Clean up of logging messages to make following the client login proc... (diff)
downloadopensim-SC_OLD-b9acf3ac5e5239c14a8f46c101d6470ffb2675d3.zip
opensim-SC_OLD-b9acf3ac5e5239c14a8f46c101d6470ffb2675d3.tar.gz
opensim-SC_OLD-b9acf3ac5e5239c14a8f46c101d6470ffb2675d3.tar.bz2
opensim-SC_OLD-b9acf3ac5e5239c14a8f46c101d6470ffb2675d3.tar.xz
* minor: for now, print out the exception if logging into the initially selected region fails, rather than swallowing it
-rw-r--r--OpenSim/Grid/UserServer/UserLoginService.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Grid/UserServer/UserLoginService.cs b/OpenSim/Grid/UserServer/UserLoginService.cs
index 06a68ae..efd0654 100644
--- a/OpenSim/Grid/UserServer/UserLoginService.cs
+++ b/OpenSim/Grid/UserServer/UserLoginService.cs
@@ -338,9 +338,9 @@ namespace OpenSim.Grid.UserServer
338 } 338 }
339 } 339 }
340 } 340 }
341 catch (Exception) 341 catch (Exception e)
342 //catch (System.AccessViolationException)
343 { 342 {
343 m_log.ErrorFormat("[LOGIN]: Requested region for login not available, {0}", e);
344 tryDefault = true; 344 tryDefault = true;
345 } 345 }
346 346
@@ -353,7 +353,7 @@ namespace OpenSim.Grid.UserServer
353 ((ulong) m_config.DefaultY*Constants.RegionSize); 353 ((ulong) m_config.DefaultY*Constants.RegionSize);
354 354
355 m_log.Warn( 355 m_log.Warn(
356 "[LOGIN]: Home region not available: sending to default " + defaultHandle); 356 "[LOGIN]: Sending user to default region " + defaultHandle + " instead");
357 357
358 try 358 try
359 { 359 {