diff options
author | Jeff Ames | 2008-03-17 17:10:53 +0000 |
---|---|---|
committer | Jeff Ames | 2008-03-17 17:10:53 +0000 |
commit | 825c89e7ac2ab2d545e6a45323ee24acd31f6756 (patch) | |
tree | ee1e73db608dba71e4a4c63ce0459e8e25eeb505 /OpenSim/Framework/Communications | |
parent | * Remove uninformative exception traces from remoting errors (diff) | |
download | opensim-SC_OLD-825c89e7ac2ab2d545e6a45323ee24acd31f6756.zip opensim-SC_OLD-825c89e7ac2ab2d545e6a45323ee24acd31f6756.tar.gz opensim-SC_OLD-825c89e7ac2ab2d545e6a45323ee24acd31f6756.tar.bz2 opensim-SC_OLD-825c89e7ac2ab2d545e6a45323ee24acd31f6756.tar.xz |
Replaced some Console.WriteLine calls with writes to log.
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r-- | OpenSim/Framework/Communications/CommunicationsManager.cs | 5 |
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> |