mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 22:26:09 +08:00
Clean up logging calls using String.Format explicitly
This commit is contained in:
@@ -71,9 +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_log.InfoFormat("[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));
|
||||
m_log.InfoFormat("[CLIENT]: Removed client with code {0}, new client count {1}", id, m_clients.Count);
|
||||
}
|
||||
|
||||
public void Add(uint id, IClientAPI client)
|
||||
|
||||
Reference in New Issue
Block a user