diff options
-rw-r--r-- | OpenSim/Grid/GridServer/GridManager.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Grid/GridServer/GridManager.cs b/OpenSim/Grid/GridServer/GridManager.cs index 2933f04..c539e66 100644 --- a/OpenSim/Grid/GridServer/GridManager.cs +++ b/OpenSim/Grid/GridServer/GridManager.cs | |||
@@ -395,7 +395,11 @@ namespace OpenSim.Grid.GridServer | |||
395 | } | 395 | } |
396 | catch (LoginException e) | 396 | catch (LoginException e) |
397 | { | 397 | { |
398 | m_log.WarnFormat("[LOGIN END]: {0}", e.Message); | 398 | string logMsg = e.Message; |
399 | if (e.InnerException != null) | ||
400 | logMsg += ", " + e.InnerException.Message; | ||
401 | |||
402 | m_log.WarnFormat("[LOGIN END]: {0}", logMsg); | ||
399 | 403 | ||
400 | return e.XmlRpcErrorResponse; | 404 | return e.XmlRpcErrorResponse; |
401 | } | 405 | } |