From 825c89e7ac2ab2d545e6a45323ee24acd31f6756 Mon Sep 17 00:00:00 2001
From: Jeff Ames
Date: Mon, 17 Mar 2008 17:10:53 +0000
Subject: Replaced some Console.WriteLine calls with writes to log.
---
OpenSim/Framework/Communications/CommunicationsManager.cs | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
(limited to 'OpenSim/Framework/Communications')
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
else
{
m_inventoryService.CreateNewUserInventory(userProf.UUID);
- System.Console.WriteLine("[USERS]: Created new inventory set for " + firstName + " " + lastName);
+ m_log.Info("[USERS]: Created new inventory set for " + firstName + " " + lastName);
return userProf.UUID;
}
}
#region Friend Methods
+
///
/// Adds a new friend to the database for XUser
///
@@ -181,6 +182,7 @@ namespace OpenSim.Framework.Communications
{
m_userService.AddNewUserFriend(friendlistowner, friend, perms);
}
+
///
/// Logs off a user and does the appropriate communications
///
@@ -216,6 +218,7 @@ namespace OpenSim.Framework.Communications
{
m_userService.UpdateUserFriendPerms(friendlistowner, friend, perms);
}
+
///
/// Returns a list of FriendsListItems that describe the friends and permissions in the friend relationship for LLUUID friendslistowner
///
--
cgit v1.1