aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-09-02 17:45:38 +0100
committerJustin Clark-Casey (justincc)2013-09-02 17:45:38 +0100
commit5ce5ce6edb2217639cdcc375bf375452b81bb868 (patch)
tree69d97abe132cd624ec144be5de2ed1eb4aef20ea /OpenSim/Region/Framework/Scenes/Scene.cs
parentAllow one to specify a DefaultHGRegion flag in [GridService] in order to allo... (diff)
downloadopensim-SC_OLD-5ce5ce6edb2217639cdcc375bf375452b81bb868.zip
opensim-SC_OLD-5ce5ce6edb2217639cdcc375bf375452b81bb868.tar.gz
opensim-SC_OLD-5ce5ce6edb2217639cdcc375bf375452b81bb868.tar.bz2
opensim-SC_OLD-5ce5ce6edb2217639cdcc375bf375452b81bb868.tar.xz
Comment out warning about agent updating without valid session ID for now.
This causes extreme console spam if a simulator running latest master and one running 0.7.5 have adjacent regions occupied by avatars.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index d547323..005c9b9 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -4346,10 +4346,10 @@ namespace OpenSim.Region.Framework.Scenes
4346 ScenePresence childAgentUpdate = GetScenePresence(cAgentData.AgentID); 4346 ScenePresence childAgentUpdate = GetScenePresence(cAgentData.AgentID);
4347 if (childAgentUpdate != null) 4347 if (childAgentUpdate != null)
4348 { 4348 {
4349 if (childAgentUpdate.ControllingClient.SessionId != cAgentData.SessionID) 4349// if (childAgentUpdate.ControllingClient.SessionId != cAgentData.SessionID)
4350 // Only warn for now 4350// // Only warn for now
4351 m_log.WarnFormat("[SCENE]: Attempt at updating position of agent {0} with invalid session id {1}. Neighbor running older version?", 4351// m_log.WarnFormat("[SCENE]: Attempt at updating position of agent {0} with invalid session id {1}. Neighbor running older version?",
4352 childAgentUpdate.UUID, cAgentData.SessionID); 4352// childAgentUpdate.UUID, cAgentData.SessionID);
4353 4353
4354 // I can't imagine *yet* why we would get an update if the agent is a root agent.. 4354 // I can't imagine *yet* why we would get an update if the agent is a root agent..
4355 // however to avoid a race condition crossing borders.. 4355 // however to avoid a race condition crossing borders..