diff options
author | Justin Clarke Casey | 2008-10-28 15:46:30 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-10-28 15:46:30 +0000 |
commit | baa29fcbff05c37a1a9192999bc55cee81cfe511 (patch) | |
tree | 466fc4d4f09d8a681115bb2acbdee13ba0fad5a5 /OpenSim/Region/Environment/Modules | |
parent | * Apply http://opensimulator.org/mantis/view.php?id=2482 (diff) | |
download | opensim-SC_OLD-baa29fcbff05c37a1a9192999bc55cee81cfe511.zip opensim-SC_OLD-baa29fcbff05c37a1a9192999bc55cee81cfe511.tar.gz opensim-SC_OLD-baa29fcbff05c37a1a9192999bc55cee81cfe511.tar.bz2 opensim-SC_OLD-baa29fcbff05c37a1a9192999bc55cee81cfe511.tar.xz |
* 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
Diffstat (limited to 'OpenSim/Region/Environment/Modules')
-rw-r--r-- | OpenSim/Region/Environment/Modules/Avatar/AvatarFactory/AvatarFactoryModule.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Modules/Avatar/AvatarFactory/AvatarFactoryModule.cs b/OpenSim/Region/Environment/Modules/Avatar/AvatarFactory/AvatarFactoryModule.cs index 30e9f95..d3b782f 100644 --- a/OpenSim/Region/Environment/Modules/Avatar/AvatarFactory/AvatarFactoryModule.cs +++ b/OpenSim/Region/Environment/Modules/Avatar/AvatarFactory/AvatarFactoryModule.cs | |||
@@ -57,15 +57,14 @@ namespace OpenSim.Region.Environment.Modules.Avatar.AvatarFactory | |||
57 | if (appearance != null) | 57 | if (appearance != null) |
58 | { | 58 | { |
59 | //SetAppearanceAssets(profile, ref appearance); | 59 | //SetAppearanceAssets(profile, ref appearance); |
60 | m_log.InfoFormat("[APPEARANCE] found : {0}", appearance.ToString()); | 60 | m_log.InfoFormat("[APPEARANCE]: Found : {0}", appearance.ToString()); |
61 | return true; | 61 | return true; |
62 | } | 62 | } |
63 | } | 63 | } |
64 | 64 | ||
65 | appearance = CreateDefault(avatarId); | 65 | appearance = CreateDefault(avatarId); |
66 | m_log.InfoFormat("[APPEARANCE] appearance not found for {0}, creating default", avatarId.ToString()); | 66 | m_log.InfoFormat("[APPEARANCE]: Appearance not found for {0}, creating default", avatarId); |
67 | return false; | 67 | return false; |
68 | |||
69 | } | 68 | } |
70 | 69 | ||
71 | private AvatarAppearance CreateDefault(UUID avatarId) | 70 | private AvatarAppearance CreateDefault(UUID avatarId) |