From e0da281e3d70fbe1752815f5a7ae4b3ed0cf15ba Mon Sep 17 00:00:00 2001 From: Mic Bowman Date: Mon, 3 Jan 2011 17:16:22 -0800 Subject: Cleaned up debugging messages in the WebRequest handlers --- .../Connectors/Simulation/SimulationServiceConnector.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs') diff --git a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs index 4facc4a..b183364 100644 --- a/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs +++ b/OpenSim/Services/Connectors/Simulation/SimulationServiceConnector.cs @@ -80,7 +80,7 @@ namespace OpenSim.Services.Connectors.Simulation /// public bool CreateAgent(GridRegion destination, AgentCircuitData aCircuit, uint flags, out string reason) { - m_log.WarnFormat("[REMOTE SIMULATION CONNECTOR]: CreateAgent start"); + // m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: CreateAgent start"); reason = String.Empty; if (destination == null) @@ -143,7 +143,7 @@ namespace OpenSim.Services.Connectors.Simulation /// private bool UpdateAgent(GridRegion destination, IAgentData cAgentData) { - m_log.WarnFormat("[REMOTE SIMULATION CONNECTOR]: UpdateAgent start"); + // m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: UpdateAgent start"); // Eventually, we want to use a caps url instead of the agentID string uri = destination.ServerURI + AgentPath() + cAgentData.AgentID + "/"; @@ -174,7 +174,7 @@ namespace OpenSim.Services.Connectors.Simulation /// public bool RetrieveAgent(GridRegion destination, UUID id, out IAgentData agent) { - m_log.WarnFormat("[REMOTE SIMULATION CONNECTOR]: RetrieveAgent start"); + // m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: RetrieveAgent start"); agent = null; @@ -208,7 +208,7 @@ namespace OpenSim.Services.Connectors.Simulation /// public bool QueryAccess(GridRegion destination, UUID id) { - m_log.WarnFormat("[REMOTE SIMULATION CONNECTOR]: QueryAccess start"); + // m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: QueryAccess start"); IPEndPoint ext = destination.ExternalEndPoint; if (ext == null) return false; @@ -233,7 +233,7 @@ namespace OpenSim.Services.Connectors.Simulation /// public bool ReleaseAgent(UUID origin, UUID id, string uri) { - m_log.WarnFormat("[REMOTE SIMULATION CONNECTOR]: ReleaseAgent start"); + // m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: ReleaseAgent start"); try { @@ -251,7 +251,7 @@ namespace OpenSim.Services.Connectors.Simulation /// public bool CloseAgent(GridRegion destination, UUID id) { - m_log.WarnFormat("[REMOTE SIMULATION CONNECTOR]: CloseAgent start"); + // m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: CloseAgent start"); string uri = destination.ServerURI + AgentPath() + id + "/" + destination.RegionID.ToString() + "/"; @@ -281,7 +281,7 @@ namespace OpenSim.Services.Connectors.Simulation /// public bool CreateObject(GridRegion destination, ISceneObject sog, bool isLocalCall) { - m_log.WarnFormat("[REMOTE SIMULATION CONNECTOR]: CreateObject start"); + // m_log.DebugFormat("[REMOTE SIMULATION CONNECTOR]: CreateObject start"); string uri = destination.ServerURI + ObjectPath() + sog.UUID + "/"; -- cgit v1.1