From 548bbc97e5d6e2ffaa3068aa0847eaa6c401345d Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 6 Feb 2008 20:34:18 +0000 Subject: * Chasing down memory leak where memory used by a client is not returned on client logout * This code may or may not be on the right track, but I want to save my work so far. --- OpenSim/Region/ClientStack/ClientView.cs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'OpenSim/Region/ClientStack/ClientView.cs') diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs index 10bf0d1..aeac1b2 100644 --- a/OpenSim/Region/ClientStack/ClientView.cs +++ b/OpenSim/Region/ClientStack/ClientView.cs @@ -51,6 +51,11 @@ namespace OpenSim.Region.ClientStack /// public class ClientView : IClientAPI { + ~ClientView() + { + m_log.Info("[CLIENTVIEW]: Dstructor called"); + } + private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); /* static variables */ -- cgit v1.1