* Increase information in simulator_login log messages
parent
35b1cae593
commit
c00e56d3ee
|
@ -124,16 +124,18 @@ namespace OpenSim.Region.Communications.OGS1
|
||||||
SendParams.Add(GridParams);
|
SendParams.Add(GridParams);
|
||||||
|
|
||||||
// Send Request
|
// Send Request
|
||||||
XmlRpcRequest GridReq;
|
|
||||||
XmlRpcResponse GridResp;
|
XmlRpcResponse GridResp;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
GridReq = new XmlRpcRequest("simulator_login", SendParams);
|
XmlRpcRequest GridReq = new XmlRpcRequest("simulator_login", SendParams);
|
||||||
GridResp = GridReq.Send(serversInfo.GridURL, 16000);
|
GridResp = GridReq.Send(serversInfo.GridURL, 16000);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
m_log.ErrorFormat("Unable to connect to grid. Grid server not running? Exception {0}", ex);
|
m_log.ErrorFormat(
|
||||||
|
"Unable to connect to grid at {0}. Grid server not running? Exception {1}",
|
||||||
|
serversInfo.GridURL, ex);
|
||||||
|
|
||||||
throw(ex);
|
throw(ex);
|
||||||
}
|
}
|
||||||
Hashtable GridRespData = (Hashtable)GridResp.Value;
|
Hashtable GridRespData = (Hashtable)GridResp.Value;
|
||||||
|
@ -143,7 +145,7 @@ namespace OpenSim.Region.Communications.OGS1
|
||||||
if (GridRespData.ContainsKey("error"))
|
if (GridRespData.ContainsKey("error"))
|
||||||
{
|
{
|
||||||
string errorstring = (string) GridRespData["error"];
|
string errorstring = (string) GridRespData["error"];
|
||||||
m_log.Error("Unable to connect to grid: " + errorstring);
|
m_log.ErrorFormat("Unable to connect to grid at {0}: {1}", serversInfo.GridURL, errorstring);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue