aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes
diff options
context:
space:
mode:
authorUbitUmarov2014-08-03 19:00:01 +0100
committerUbitUmarov2014-08-03 19:00:01 +0100
commitca8b0e6a1d373b55137febaafd2797e59016d5a8 (patch)
tree367706f8e9d8e621a52522964e75fd45a9bbaaab /OpenSim/Region/Framework/Scenes
parent several debug msgs, need to be removed asap (diff)
downloadopensim-SC_OLD-ca8b0e6a1d373b55137febaafd2797e59016d5a8.zip
opensim-SC_OLD-ca8b0e6a1d373b55137febaafd2797e59016d5a8.tar.gz
opensim-SC_OLD-ca8b0e6a1d373b55137febaafd2797e59016d5a8.tar.bz2
opensim-SC_OLD-ca8b0e6a1d373b55137febaafd2797e59016d5a8.tar.xz
replace debug msgs by others
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r--OpenSim/Region/Framework/Scenes/EventManager.cs8
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs10
2 files changed, 9 insertions, 9 deletions
diff --git a/OpenSim/Region/Framework/Scenes/EventManager.cs b/OpenSim/Region/Framework/Scenes/EventManager.cs
index 182c3fd..692e0c9 100644
--- a/OpenSim/Region/Framework/Scenes/EventManager.cs
+++ b/OpenSim/Region/Framework/Scenes/EventManager.cs
@@ -1366,9 +1366,9 @@ namespace OpenSim.Region.Framework.Scenes
1366 { 1366 {
1367 try 1367 try
1368 { 1368 {
1369 m_log.ErrorFormat("[EVENT MANAGER]: OnRemovePresenceDelegate: {0}",d.Target.ToString()); 1369// m_log.ErrorFormat("[EVENT MANAGER]: OnRemovePresenceDelegate: {0}",d.Target.ToString());
1370 d(agentId); 1370 d(agentId);
1371 m_log.ErrorFormat("[EVENT MANAGER]: OnRemovePresenceDelegate done "); 1371// m_log.ErrorFormat("[EVENT MANAGER]: OnRemovePresenceDelegate done ");
1372 } 1372 }
1373 catch (Exception e) 1373 catch (Exception e)
1374 { 1374 {
@@ -2039,9 +2039,9 @@ namespace OpenSim.Region.Framework.Scenes
2039 { 2039 {
2040 try 2040 try
2041 { 2041 {
2042 m_log.ErrorFormat("[EVENT MANAGER]: TriggerClientClosed: {0}", d.Target.ToString()); 2042// m_log.ErrorFormat("[EVENT MANAGER]: TriggerClientClosed: {0}", d.Target.ToString());
2043 d(ClientID, scene); 2043 d(ClientID, scene);
2044 m_log.ErrorFormat("[EVENT MANAGER]: TriggerClientClosed done "); 2044// m_log.ErrorFormat("[EVENT MANAGER]: TriggerClientClosed done ");
2045 2045
2046 } 2046 }
2047 catch (Exception e) 2047 catch (Exception e)
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index c53f7af..0266faf 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -3640,17 +3640,17 @@ namespace OpenSim.Region.Framework.Scenes
3640 } 3640 }
3641 3641
3642 m_eventManager.TriggerClientClosed(agentID, this); 3642 m_eventManager.TriggerClientClosed(agentID, this);
3643 m_log.Debug("[Scene]TriggerClientClosed done"); 3643// m_log.Debug("[Scene]TriggerClientClosed done");
3644 m_eventManager.TriggerOnRemovePresence(agentID); 3644 m_eventManager.TriggerOnRemovePresence(agentID);
3645 m_log.Debug("[Scene]TriggerOnRemovePresence done"); 3645// m_log.Debug("[Scene]TriggerOnRemovePresence done");
3646 3646
3647 if (!isChildAgent) 3647 if (!isChildAgent)
3648 { 3648 {
3649 if (AttachmentsModule != null) 3649 if (AttachmentsModule != null)
3650 { 3650 {
3651 m_log.Debug("[Scene]DeRezAttachments"); 3651// m_log.Debug("[Scene]DeRezAttachments");
3652 AttachmentsModule.DeRezAttachments(avatar); 3652 AttachmentsModule.DeRezAttachments(avatar);
3653 m_log.Debug("[Scene]DeRezAttachments done"); 3653// m_log.Debug("[Scene]DeRezAttachments done");
3654 } 3654 }
3655 3655
3656 ForEachClient( 3656 ForEachClient(
@@ -3665,7 +3665,7 @@ namespace OpenSim.Region.Framework.Scenes
3665 // It's possible for child agents to have transactions if changes are being made cross-border. 3665 // It's possible for child agents to have transactions if changes are being made cross-border.
3666 if (AgentTransactionsModule != null) 3666 if (AgentTransactionsModule != null)
3667 { 3667 {
3668 m_log.Debug("[Scene]RemoveAgentAssetTransactions"); 3668// m_log.Debug("[Scene]RemoveAgentAssetTransactions");
3669 AgentTransactionsModule.RemoveAgentAssetTransactions(agentID); 3669 AgentTransactionsModule.RemoveAgentAssetTransactions(agentID);
3670 } 3670 }
3671 m_log.Debug("[Scene] The avatar has left the building"); 3671 m_log.Debug("[Scene] The avatar has left the building");