diff options
author | Justin Clarke Casey | 2008-06-13 16:17:27 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-06-13 16:17:27 +0000 |
commit | 8f69a0ab3dc37131e361da09a25bf39bb3eecd27 (patch) | |
tree | 2927d95c3e4807712fba3c6235bd5dc3ffe1d637 | |
parent | add indexes for sqlite inventory (diff) | |
download | opensim-SC_OLD-8f69a0ab3dc37131e361da09a25bf39bb3eecd27.zip opensim-SC_OLD-8f69a0ab3dc37131e361da09a25bf39bb3eecd27.tar.gz opensim-SC_OLD-8f69a0ab3dc37131e361da09a25bf39bb3eecd27.tar.bz2 opensim-SC_OLD-8f69a0ab3dc37131e361da09a25bf39bb3eecd27.tar.xz |
* If appropriate, start printing out the inner exception from the grid -> region status check, so we can tell a bit better what the problem was
Diffstat (limited to '')
-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 | } |