diff options
author | Justin Clark-Casey (justincc) | 2011-06-10 20:40:14 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-06-10 20:40:14 +0100 |
commit | b5518dc90631014a4aa3dbb6c27fd5d4c9f612c9 (patch) | |
tree | 82b888ac45a3a8178f77bccadc564b4672b4674e /OpenSim | |
parent | For MySQL, migrate region tables to the MyISAM storage engine rather than InnoDB (diff) | |
download | opensim-SC_OLD-b5518dc90631014a4aa3dbb6c27fd5d4c9f612c9.zip opensim-SC_OLD-b5518dc90631014a4aa3dbb6c27fd5d4c9f612c9.tar.gz opensim-SC_OLD-b5518dc90631014a4aa3dbb6c27fd5d4c9f612c9.tar.bz2 opensim-SC_OLD-b5518dc90631014a4aa3dbb6c27fd5d4c9f612c9.tar.xz |
minor: Add some commented out destructor logging messages for potential future use.
At the moment, client and scene objects are being garbage collected as expected, at least in simple scenarios.
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 5 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | 7 |
3 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index cefceb0..f53e236 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -428,6 +428,11 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
428 | 428 | ||
429 | #endregion Properties | 429 | #endregion Properties |
430 | 430 | ||
431 | // ~LLClientView() | ||
432 | // { | ||
433 | // m_log.DebugFormat("[LLCLIENTVIEW]: Destructor called for {0}, circuit code {1}", Name, CircuitCode); | ||
434 | // } | ||
435 | |||
431 | /// <summary> | 436 | /// <summary> |
432 | /// Constructor | 437 | /// Constructor |
433 | /// </summary> | 438 | /// </summary> |
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index 9b9374b..79660a3 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -469,6 +469,11 @@ namespace OpenSim.Region.Framework.Scenes | |||
469 | 469 | ||
470 | #endregion | 470 | #endregion |
471 | 471 | ||
472 | // ~SceneObjectGroup() | ||
473 | // { | ||
474 | // m_log.DebugFormat("[SCENE OBJECT GROUP]: Destructor called for {0}, local id {1}", Name, LocalId); | ||
475 | // } | ||
476 | |||
472 | #region Constructors | 477 | #region Constructors |
473 | 478 | ||
474 | /// <summary> | 479 | /// <summary> |
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs index 331abb2..a215b20 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs | |||
@@ -346,6 +346,13 @@ namespace OpenSim.Region.Framework.Scenes | |||
346 | 346 | ||
347 | #endregion Fields | 347 | #endregion Fields |
348 | 348 | ||
349 | // ~SceneObjectPart() | ||
350 | // { | ||
351 | // m_log.DebugFormat( | ||
352 | // "[SCENE OBJECT PART]: Destructor called for {0}, local id {1}, parent {2} {3}", | ||
353 | // Name, LocalId, ParentGroup.Name, ParentGroup.LocalId); | ||
354 | // } | ||
355 | |||
349 | #region Constructors | 356 | #region Constructors |
350 | 357 | ||
351 | /// <summary> | 358 | /// <summary> |