minor: put in commented out logging statements for future reuse

This commit is contained in:
Justin Clark-Casey (justincc)
2012-02-09 00:10:45 +00:00
parent 3fa61c4a39
commit dbe32a1f6d
2 changed files with 10 additions and 1 deletions

View File

@@ -292,13 +292,16 @@ namespace OpenSim.Region.OptionalModules.World.NPC
NPCAvatar av;
if (m_avatars.TryGetValue(agentID, out av))
{
// m_log.DebugFormat("[NPC MODULE]: Found {0} {1} to remove", agentID, av.Name);
scene.RemoveClient(agentID, false);
m_avatars.Remove(agentID);
// m_log.DebugFormat("[NPC MODULE]: Removed {0} {1}", agentID, av.Name);
return true;
}
}
// m_log.DebugFormat("[NPC MODULE]: Could not find {0} to remove", agentID);
return false;
}