temporary add logging message when user service successfully registers a message service

this is for http://opensimulator.org/mantis/view.php?id=4351
0.6.8-post-fixes
Justin Clark-Casey (justincc) 2009-12-02 15:46:26 +00:00
parent e385961f20
commit fd4924f6fa
1 changed files with 9 additions and 1 deletions

View File

@ -147,6 +147,7 @@ namespace OpenSim.Grid.UserServer.Modules
MessageServers["URI"] = msginfo;
}
}
public void RemoveResponsibleRegion(string URI, ulong regionhandle)
{
if (!MessageServers.ContainsKey(URI))
@ -164,6 +165,7 @@ namespace OpenSim.Grid.UserServer.Modules
}
}
public XmlRpcResponse XmlRPCRegisterMessageServer(XmlRpcRequest request, IPEndPoint remoteClient)
{
XmlRpcResponse response = new XmlRpcResponse();
@ -182,9 +184,15 @@ namespace OpenSim.Grid.UserServer.Modules
RegisterMessageServer(URI, m);
responseData["responsestring"] = "TRUE";
response.Value = responseData;
m_log.DebugFormat(
"[MSGSERVER]: Successfully processed message service registration request from {0}",
remoteClient.Address);
}
return response;
}
public XmlRpcResponse XmlRPCDeRegisterMessageServer(XmlRpcRequest request, IPEndPoint remoteClient)
{
XmlRpcResponse response = new XmlRpcResponse();
@ -510,4 +518,4 @@ namespace OpenSim.Grid.UserServer.Modules
return response;
}
}
}
}