mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 02:05:34 +08:00
Deleted a couple of verbose messages
This commit is contained in:
@@ -176,7 +176,7 @@ namespace OpenSim.Region.CoreModules.Framework
|
||||
|
||||
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)
|
||||
{
|
||||
|
||||
@@ -175,15 +175,13 @@ namespace OpenSim.Region.CoreModules.Framework.UserManagement
|
||||
// Not found in cache, get it from services
|
||||
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);
|
||||
|
||||
if (names.Length == 2)
|
||||
{
|
||||
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);
|
||||
else
|
||||
m_log.DebugFormat("[YYY]: Found user {0} {1} for uuid {2}", names[0], names[1], uuid);
|
||||
|
||||
client.SendNameReply(uuid, names[0], names[1]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user