Get rid of the spurious [WEB UTIL] couldn't decode <OpenSim agent 57956c4b-ff2e-4fc1-9995-613c6256cc98>: Invalid character 'O' in input string messages
These are just the result of an attempt to canonicalize received messages - it's not important that we constantly log them. Also finally get the deregister grid service message working properly0.7.2-post-fixes
parent
011c1279f5
commit
2593a446ac
|
@ -54,12 +54,12 @@ namespace OpenSim.Data
|
|||
/// <summary>
|
||||
/// Return the x-coordinate of this region.
|
||||
/// </summary>
|
||||
public int coordX { get { return (sizeX != 0) ? posX / (int)Constants.RegionSize : -1; } }
|
||||
public int coordX { get { return posX / (int)Constants.RegionSize; } }
|
||||
|
||||
/// <summary>
|
||||
/// Return the y-coordinate of this region.
|
||||
/// </summary>
|
||||
public int coordY { get { return (sizeY != 0) ? posY / (int)Constants.RegionSize : -1; } }
|
||||
public int coordY { get { return posY / (int)Constants.RegionSize; } }
|
||||
|
||||
public Dictionary<string, object> Data;
|
||||
}
|
||||
|
|
|
@ -297,7 +297,7 @@ namespace OpenSim.Framework
|
|||
catch (Exception e)
|
||||
{
|
||||
// don't need to treat this as an error... we're just guessing anyway
|
||||
m_log.DebugFormat("[WEB UTIL] couldn't decode <{0}>: {1}",response,e.Message);
|
||||
// m_log.DebugFormat("[WEB UTIL] couldn't decode <{0}>: {1}",response,e.Message);
|
||||
}
|
||||
|
||||
return result;
|
||||
|
|
|
@ -177,7 +177,6 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
{
|
||||
// We're ignoring a collection was modified error because this data gets old and outdated fast.
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -185,13 +184,18 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
/// </summary>
|
||||
protected void SendCloseChildAgent(UUID agentID, ulong regionHandle)
|
||||
{
|
||||
m_log.Debug("[INTERGRID]: Sending close agent to " + regionHandle);
|
||||
// let's do our best, but there's not much we can do if the neighbour doesn't accept.
|
||||
|
||||
//m_commsProvider.InterRegion.TellRegionToCloseChildConnection(regionHandle, agentID);
|
||||
uint x = 0, y = 0;
|
||||
Utils.LongToUInts(regionHandle, out x, out y);
|
||||
|
||||
GridRegion destination = m_scene.GridService.GetRegionByPosition(m_regionInfo.ScopeID, (int)x, (int)y);
|
||||
|
||||
m_log.DebugFormat(
|
||||
"[INTERGRID]: Sending close agent {0} to region at {1}-{2}",
|
||||
agentID, destination.RegionCoordX, destination.RegionCoordY);
|
||||
|
||||
m_scene.SimulationService.CloseAgent(destination, agentID);
|
||||
}
|
||||
|
||||
|
|
|
@ -220,14 +220,13 @@ namespace OpenSim.Server.Handlers.Simulation
|
|||
responsedata["int_response_code"] = HttpStatusCode.OK;
|
||||
responsedata["str_response_string"] = "OpenSim agent " + id.ToString();
|
||||
|
||||
m_log.Debug("[AGENT HANDLER]: Agent Released/Deleted.");
|
||||
m_log.DebugFormat("[AGENT HANDLER]: Agent {0} Released/Deleted from region {1}", id, regionID);
|
||||
}
|
||||
|
||||
protected virtual void ReleaseAgent(UUID regionID, UUID id)
|
||||
{
|
||||
m_SimulationService.ReleaseAgent(regionID, id, "");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public class AgentPostHandler : BaseStreamHandler
|
||||
|
|
|
@ -369,7 +369,7 @@ namespace OpenSim.Services.Connectors.Simulation
|
|||
/// </summary>
|
||||
public bool CloseAgent(GridRegion destination, UUID id)
|
||||
{
|
||||
// m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: CloseAgent start");
|
||||
// m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: CloseAgent start");
|
||||
|
||||
string uri = destination.ServerURI + AgentPath() + id + "/" + destination.RegionID.ToString() + "/";
|
||||
|
||||
|
|
|
@ -244,7 +244,7 @@ namespace OpenSim.Services.GridService
|
|||
return false;
|
||||
|
||||
m_log.DebugFormat(
|
||||
"[GRID SERVICE]: Degistering region {0} ({1}) at {2}-{3}",
|
||||
"[GRID SERVICE]: Deregistering region {0} ({1}) at {2}-{3}",
|
||||
region.RegionName, region.RegionID, region.coordX, region.coordY);
|
||||
|
||||
int flags = Convert.ToInt32(region.Data["flags"]);
|
||||
|
@ -291,7 +291,7 @@ namespace OpenSim.Services.GridService
|
|||
}
|
||||
}
|
||||
|
||||
m_log.DebugFormat("[GRID SERVICE]: region {0} has {1} neighbours", region.RegionName, rinfos.Count);
|
||||
// m_log.DebugFormat("[GRID SERVICE]: region {0} has {1} neighbours", region.RegionName, rinfos.Count);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue