aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-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 {