mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
Add regionName to OGS1 regionUp report.
This commit is contained in:
@@ -50,6 +50,7 @@ namespace OpenSim.Framework
|
||||
{
|
||||
m_regionLocX = ConvertFrom.RegionLocX;
|
||||
m_regionLocY = ConvertFrom.RegionLocY;
|
||||
m_regionName = ConvertFrom.RegionName;
|
||||
m_internalEndPoint = ConvertFrom.InternalEndPoint;
|
||||
m_externalHostName = ConvertFrom.ExternalHostName;
|
||||
m_remotingPort = ConvertFrom.RemotingPort;
|
||||
@@ -60,6 +61,7 @@ namespace OpenSim.Framework
|
||||
|
||||
m_regionLocX = regionLocX;
|
||||
m_regionLocY = regionLocY;
|
||||
m_regionName = regionName;
|
||||
|
||||
m_internalEndPoint = internalEndPoint;
|
||||
m_externalHostName = externalUri;
|
||||
@@ -69,6 +71,7 @@ namespace OpenSim.Framework
|
||||
{
|
||||
m_regionLocX = regionLocX;
|
||||
m_regionLocY = regionLocY;
|
||||
m_regionName = regionName;
|
||||
|
||||
m_externalHostName = externalUri;
|
||||
|
||||
@@ -132,6 +135,15 @@ namespace OpenSim.Framework
|
||||
}
|
||||
}
|
||||
|
||||
protected string m_regionName;
|
||||
public string regionName
|
||||
{
|
||||
get
|
||||
{
|
||||
return m_regionName;
|
||||
}
|
||||
}
|
||||
|
||||
protected string m_externalHostName;
|
||||
public string ExternalHostName
|
||||
{
|
||||
|
||||
@@ -961,7 +961,8 @@ namespace OpenSim.Region.Communications.OGS1
|
||||
|
||||
public bool TriggerRegionUp(SearializableRegionInfo regionData, ulong regionhandle)
|
||||
{
|
||||
MainLog.Instance.Verbose("INTER", gdebugRegionName + ": Incoming OGS1 RegionUpReport: " + regionData.RegionLocX + "," + regionData.RegionLocY);
|
||||
MainLog.Instance.Verbose("INTER", gdebugRegionName + "Incoming OGS1 RegionUpReport: " +
|
||||
regionData.regionName + " (" + regionData.RegionLocX + "," + regionData.RegionLocY + ")" );
|
||||
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user