Deleted a couple of verbose messages

cpu-performance
Diva Canto 2013-07-16 17:18:11 -07:00
parent 0419852598
commit 9f578cf0c8
2 changed files with 2 additions and 4 deletions

View File

@ -176,7 +176,7 @@ namespace OpenSim.Region.CoreModules.Framework
private void ProcessQueue(object sender, System.Timers.ElapsedEventArgs e) private void ProcessQueue(object sender, System.Timers.ElapsedEventArgs e)
{ {
m_log.DebugFormat("[YYY]: Process queue with {0} continuations", m_RequestQueue.Count); //m_log.DebugFormat("[YYY]: Process queue with {0} continuations", m_RequestQueue.Count);
while (m_RequestQueue.Count > 0) while (m_RequestQueue.Count > 0)
{ {

View File

@ -175,15 +175,13 @@ namespace OpenSim.Region.CoreModules.Framework.UserManagement
// Not found in cache, get it from services // Not found in cache, get it from services
m_ServiceThrottle.Enqueue(delegate m_ServiceThrottle.Enqueue(delegate
{ {
m_log.DebugFormat("[YYY]: Name request {0}", uuid); //m_log.DebugFormat("[YYY]: Name request {0}", uuid);
bool foundRealName = TryGetUserNamesFromServices(uuid, names); bool foundRealName = TryGetUserNamesFromServices(uuid, names);
if (names.Length == 2) if (names.Length == 2)
{ {
if (!foundRealName) if (!foundRealName)
m_log.DebugFormat("[USER MANAGEMENT MODULE]: Sending {0} {1} for {2} to {3} since no bound name found", names[0], names[1], uuid, client.Name); m_log.DebugFormat("[USER MANAGEMENT MODULE]: Sending {0} {1} for {2} to {3} since no bound name found", names[0], names[1], uuid, client.Name);
else
m_log.DebugFormat("[YYY]: Found user {0} {1} for uuid {2}", names[0], names[1], uuid);
client.SendNameReply(uuid, names[0], names[1]); client.SendNameReply(uuid, names[0], names[1]);
} }