* minor: log message twiddling

This commit is contained in:
Justin Clarke Casey
2008-08-01 20:05:26 +00:00
parent 10e0df0a2d
commit 5350cec0b3
6 changed files with 17 additions and 24 deletions

View File

@@ -555,18 +555,14 @@ namespace OpenSim.Region.Environment.Scenes
protected internal void AddScenePresence(ScenePresence presence)
{
bool child = presence.IsChildAgent;
if (child)
{
m_numChildAgents++;
m_log.Info("[SCENE]" + m_regInfo.RegionName + ": Creating new child agent.");
}
else
{
m_numRootAgents++;
m_log.Info("[SCENE] " + m_regInfo.RegionName + ": Creating new root agent.");
m_log.Info("[SCENE] " + m_regInfo.RegionName + ": Adding Physical agent.");
presence.AddToPhysicalScene();
}