aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/CommunicationsManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Communications/CommunicationsManager.cs')
-rw-r--r--OpenSim/Framework/Communications/CommunicationsManager.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs
index 655abd7..93117fd 100644
--- a/OpenSim/Framework/Communications/CommunicationsManager.cs
+++ b/OpenSim/Framework/Communications/CommunicationsManager.cs
@@ -165,12 +165,13 @@ namespace OpenSim.Framework.Communications
165 else 165 else
166 { 166 {
167 m_inventoryService.CreateNewUserInventory(userProf.UUID); 167 m_inventoryService.CreateNewUserInventory(userProf.UUID);
168 System.Console.WriteLine("[USERS]: Created new inventory set for " + firstName + " " + lastName); 168 m_log.Info("[USERS]: Created new inventory set for " + firstName + " " + lastName);
169 return userProf.UUID; 169 return userProf.UUID;
170 } 170 }
171 } 171 }
172 172
173 #region Friend Methods 173 #region Friend Methods
174
174 /// <summary> 175 /// <summary>
175 /// Adds a new friend to the database for XUser 176 /// Adds a new friend to the database for XUser
176 /// </summary> 177 /// </summary>
@@ -181,6 +182,7 @@ namespace OpenSim.Framework.Communications
181 { 182 {
182 m_userService.AddNewUserFriend(friendlistowner, friend, perms); 183 m_userService.AddNewUserFriend(friendlistowner, friend, perms);
183 } 184 }
185
184 /// <summary> 186 /// <summary>
185 /// Logs off a user and does the appropriate communications 187 /// Logs off a user and does the appropriate communications
186 /// </summary> 188 /// </summary>
@@ -216,6 +218,7 @@ namespace OpenSim.Framework.Communications
216 { 218 {
217 m_userService.UpdateUserFriendPerms(friendlistowner, friend, perms); 219 m_userService.UpdateUserFriendPerms(friendlistowner, friend, perms);
218 } 220 }
221
219 /// <summary> 222 /// <summary>
220 /// Returns a list of FriendsListItems that describe the friends and permissions in the friend relationship for LLUUID friendslistowner 223 /// Returns a list of FriendsListItems that describe the friends and permissions in the friend relationship for LLUUID friendslistowner
221 /// </summary> 224 /// </summary>