mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
* 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
This commit is contained in:
@@ -395,7 +395,11 @@ namespace OpenSim.Grid.GridServer
|
||||
}
|
||||
catch (LoginException e)
|
||||
{
|
||||
m_log.WarnFormat("[LOGIN END]: {0}", e.Message);
|
||||
string logMsg = e.Message;
|
||||
if (e.InnerException != null)
|
||||
logMsg += ", " + e.InnerException.Message;
|
||||
|
||||
m_log.WarnFormat("[LOGIN END]: {0}", logMsg);
|
||||
|
||||
return e.XmlRpcErrorResponse;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user