aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.cs
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/Scene.cs
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 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.cs8
1 files changed, 4 insertions, 4 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 }