From f05f583613850ef480d7be6a74220da0507e8b9b Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Fri, 8 Feb 2008 22:39:08 +0000 Subject: Still chasing logout memory leak. Putting in small changes and temporary light verbosity to this end --- OpenSim/Framework/ClientManager.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'OpenSim/Framework/ClientManager.cs') diff --git a/OpenSim/Framework/ClientManager.cs b/OpenSim/Framework/ClientManager.cs index 6843dce..064b82d 100644 --- a/OpenSim/Framework/ClientManager.cs +++ b/OpenSim/Framework/ClientManager.cs @@ -26,6 +26,7 @@ * */ +using System; using System.Collections.Generic; using libsecondlife; using libsecondlife.Packets; @@ -70,7 +71,9 @@ namespace OpenSim.Framework public void Remove(uint id) { + //m_log.Info(String.Format("[CLIENT]: Removing client with code {0}, current count {1}", id, m_clients.Count)); m_clients.Remove(id); + m_log.Info(String.Format("[CLIENT]: Removed client with code {0}, new client count {1}", id, m_clients.Count)); } public void Add(uint id, IClientAPI client) -- cgit v1.1