diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/ClientManager.cs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Framework/ClientManager.cs b/OpenSim/Framework/ClientManager.cs index 40c04c3..160d5b6 100644 --- a/OpenSim/Framework/ClientManager.cs +++ b/OpenSim/Framework/ClientManager.cs | |||
@@ -27,8 +27,10 @@ | |||
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Reflection; | ||
30 | using libsecondlife; | 31 | using libsecondlife; |
31 | using libsecondlife.Packets; | 32 | using libsecondlife.Packets; |
33 | using log4net; | ||
32 | 34 | ||
33 | namespace OpenSim.Framework | 35 | namespace OpenSim.Framework |
34 | { | 36 | { |
@@ -36,7 +38,7 @@ namespace OpenSim.Framework | |||
36 | 38 | ||
37 | public class ClientManager | 39 | public class ClientManager |
38 | { | 40 | { |
39 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 41 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
40 | 42 | ||
41 | private Dictionary<uint, IClientAPI> m_clients; | 43 | private Dictionary<uint, IClientAPI> m_clients; |
42 | 44 | ||
@@ -56,7 +58,7 @@ namespace OpenSim.Framework | |||
56 | { | 58 | { |
57 | whatToDo(LocalClients[i]); | 59 | whatToDo(LocalClients[i]); |
58 | } | 60 | } |
59 | catch (System.Exception e) | 61 | catch (Exception e) |
60 | { | 62 | { |
61 | m_log.Warn("[CLIENT]: Unable to do ForEachClient for one of the clients" + "\n Reason: " + e.ToString()); | 63 | m_log.Warn("[CLIENT]: Unable to do ForEachClient for one of the clients" + "\n Reason: " + e.ToString()); |
62 | } | 64 | } |
@@ -129,7 +131,7 @@ namespace OpenSim.Framework | |||
129 | client.Close(false); | 131 | client.Close(false); |
130 | } | 132 | } |
131 | } | 133 | } |
132 | catch (System.Exception e) | 134 | catch (Exception e) |
133 | { | 135 | { |
134 | m_log.Error(string.Format("[CLIENT]: Unable to shutdown circuit for: {0}\n Reason: {1}", agentId, e)); | 136 | m_log.Error(string.Format("[CLIENT]: Unable to shutdown circuit for: {0}\n Reason: {1}", agentId, e)); |
135 | } | 137 | } |