aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-03-25 22:04:41 +0000
committerJustin Clarke Casey2008-03-25 22:04:41 +0000
commitad6783ff40a1e3edd3895ffa8b9d8a8f0d72657f (patch)
tree40c7d225458b38cb23e0fe7ce28b4aa972a2e412 /OpenSim/Region/Environment/Scenes
parent* Print out the exception stacks of resolution failures, temporarily (diff)
downloadopensim-SC_OLD-ad6783ff40a1e3edd3895ffa8b9d8a8f0d72657f.zip
opensim-SC_OLD-ad6783ff40a1e3edd3895ffa8b9d8a8f0d72657f.tar.gz
opensim-SC_OLD-ad6783ff40a1e3edd3895ffa8b9d8a8f0d72657f.tar.bz2
opensim-SC_OLD-ad6783ff40a1e3edd3895ffa8b9d8a8f0d72657f.tar.xz
* Massaging CAPS setup/teardown log messages
* Leaving quite a few debug messages in for now to help deal with bugs arising
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs8
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs2
-rw-r--r--OpenSim/Region/Environment/Scenes/ScenePresence.cs2
3 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs
index 6644299..364d3c7 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.cs
@@ -1711,9 +1711,9 @@ namespace OpenSim.Region.Environment.Scenes
1711 public void AddCapsHandler(LLUUID agentId) 1711 public void AddCapsHandler(LLUUID agentId)
1712 { 1712 {
1713 String capsObjectPath = GetCapsPath(agentId); 1713 String capsObjectPath = GetCapsPath(agentId);
1714 1714
1715 m_log.DebugFormat( 1715 m_log.DebugFormat(
1716 "[CONNECTION DEBUGGING]: Setting up CAPS handler for avatar {0} in {1}", 1716 "[CAPS]: Setting up CAPS handler for root agent {0} in {1}",
1717 agentId, RegionInfo.RegionName); 1717 agentId, RegionInfo.RegionName);
1718 1718
1719 Caps cap = 1719 Caps cap =
@@ -1739,7 +1739,7 @@ namespace OpenSim.Region.Environment.Scenes
1739 if (m_capsHandlers.ContainsKey(agentId)) 1739 if (m_capsHandlers.ContainsKey(agentId))
1740 { 1740 {
1741 m_log.DebugFormat( 1741 m_log.DebugFormat(
1742 "[CONNECTION DEBUGGING]: Removing CAPS handler for root agent {0} in {1}", 1742 "[CAPS]: Removing CAPS handler for root agent {0} in {1}",
1743 agentId, RegionInfo.RegionName); 1743 agentId, RegionInfo.RegionName);
1744 1744
1745 m_capsHandlers[agentId].DeregisterHandlers(); 1745 m_capsHandlers[agentId].DeregisterHandlers();
@@ -1748,7 +1748,7 @@ namespace OpenSim.Region.Environment.Scenes
1748 else 1748 else
1749 { 1749 {
1750 m_log.WarnFormat( 1750 m_log.WarnFormat(
1751 "[CONNECTION DEBUGGING]: Received request to remove CAPS handler for root agent {0} in {1}, but no such CAPS handler found!", 1751 "[CAPS]: Received request to remove CAPS handler for root agent {0} in {1}, but no such CAPS handler found!",
1752 agentId, RegionInfo.RegionName); 1752 agentId, RegionInfo.RegionName);
1753 } 1753 }
1754 } 1754 }
diff --git a/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs b/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs
index c9abd97..7653bf4 100644
--- a/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneCommunicationService.cs
@@ -568,7 +568,7 @@ namespace OpenSim.Region.Environment.Scenes
568 + "/CAPS/" + circuitdata.CapsPath + "0000/"; 568 + "/CAPS/" + circuitdata.CapsPath + "0000/";
569 569
570 m_log.DebugFormat( 570 m_log.DebugFormat(
571 "[CONNECTION DEBUGGING]: Sending new CAPS seed url {0} to avatar {1}", capsPath, avatar.UUID); 571 "[CAPS]: Sending new CAPS seed url {0} to client {1}", capsPath, avatar.UUID);
572 572
573 avatar.ControllingClient.SendRegionTeleport(regionHandle, 13, reg.ExternalEndPoint, 4, (1 << 4), 573 avatar.ControllingClient.SendRegionTeleport(regionHandle, 13, reg.ExternalEndPoint, 4, (1 << 4),
574 capsPath); 574 capsPath);
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
index 8f9cbbf..774e3b4 100644
--- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
@@ -1637,7 +1637,7 @@ namespace OpenSim.Region.Environment.Scenes
1637 + "/CAPS/" + circuitdata.CapsPath + "0000/"; 1637 + "/CAPS/" + circuitdata.CapsPath + "0000/";
1638 1638
1639 m_log.DebugFormat( 1639 m_log.DebugFormat(
1640 "[CONNECTION DEBUGGING]: Sending new CAPS seed url {0} to avatar {1}", capsPath, m_uuid); 1640 "[CAPS]: Sending new CAPS seed url {0} to client {1}", capsPath, m_uuid);
1641 1641
1642 m_controllingClient.CrossRegion(neighbourHandle, newpos, vel, neighbourRegion.ExternalEndPoint, 1642 m_controllingClient.CrossRegion(neighbourHandle, newpos, vel, neighbourRegion.ExternalEndPoint,
1643 capsPath); 1643 capsPath);