Add more log messages for message service/user service get_friends_list interaction

This commit is contained in:
justincc
2009-12-17 18:15:00 +00:00
parent 136476aaf3
commit 9aee2bc8e7
2 changed files with 14 additions and 6 deletions

View File

@@ -259,7 +259,11 @@ namespace OpenSim.Grid.MessagingServer.Modules
/// </summary>
/// <param name="friendlistowner">The agent that we're retreiving the friends Data for.</param>
private Dictionary<UUID, FriendListItem> GetUserFriendList(UUID friendlistowner)
{
{
m_log.DebugFormat(
"[MESSAGE SERVICE]: Requesting friends list for {0} from {1}",
friendlistowner, m_cfg.UserServerURL);
Dictionary<UUID, FriendListItem> buddies = new Dictionary<UUID,FriendListItem>();
try