* minor: Doc and log message tidy up

* reinstate debug level log message indicating when a child agent is made a root for future debugging purposes
This commit is contained in:
Justin Clarke Casey
2008-10-28 15:46:30 +00:00
parent 2a9796e2aa
commit baa29fcbff
3 changed files with 14 additions and 9 deletions

View File

@@ -57,15 +57,14 @@ namespace OpenSim.Region.Environment.Modules.Avatar.AvatarFactory
if (appearance != null)
{
//SetAppearanceAssets(profile, ref appearance);
m_log.InfoFormat("[APPEARANCE] found : {0}", appearance.ToString());
m_log.InfoFormat("[APPEARANCE]: Found : {0}", appearance.ToString());
return true;
}
}
appearance = CreateDefault(avatarId);
m_log.InfoFormat("[APPEARANCE] appearance not found for {0}, creating default", avatarId.ToString());
m_log.InfoFormat("[APPEARANCE]: Appearance not found for {0}, creating default", avatarId);
return false;
}
private AvatarAppearance CreateDefault(UUID avatarId)