aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs1
-rw-r--r--OpenSim/Services/Friends/FriendsService.cs9
2 files changed, 1 insertions, 9 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs b/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs
index d8f7dc9..ae45b99 100644
--- a/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs
+++ b/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs
@@ -546,7 +546,6 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends
546 FriendsService.StoreFriend(agentID.ToString(), theFriendUUID, 1); 546 FriendsService.StoreFriend(agentID.ToString(), theFriendUUID, 1);
547 // and also the converse 547 // and also the converse
548 FriendsService.StoreFriend(theFriendUUID, agentID.ToString(), 1); 548 FriendsService.StoreFriend(theFriendUUID, agentID.ToString(), 1);
549 m_log.DebugFormat("[HGFRIENDS MODULE]: Stored {0} {01}", agentID, theFriendUUID);
550 549
551 //if (!confirming) 550 //if (!confirming)
552 //{ 551 //{
diff --git a/OpenSim/Services/Friends/FriendsService.cs b/OpenSim/Services/Friends/FriendsService.cs
index dd3f733..e2033ac 100644
--- a/OpenSim/Services/Friends/FriendsService.cs
+++ b/OpenSim/Services/Friends/FriendsService.cs
@@ -29,7 +29,6 @@ using OpenMetaverse;
29using OpenSim.Framework; 29using OpenSim.Framework;
30using System; 30using System;
31using System.Collections.Generic; 31using System.Collections.Generic;
32using System.Reflection;
33using OpenSim.Services.Interfaces; 32using OpenSim.Services.Interfaces;
34using OpenSim.Data; 33using OpenSim.Data;
35using Nini.Config; 34using Nini.Config;
@@ -40,12 +39,7 @@ namespace OpenSim.Services.Friends
40{ 39{
41 public class FriendsService : FriendsServiceBase, IFriendsService 40 public class FriendsService : FriendsServiceBase, IFriendsService
42 { 41 {
43 private static readonly ILog m_log = 42 public FriendsService(IConfigSource config) : base(config)
44 LogManager.GetLogger(
45 MethodBase.GetCurrentMethod().DeclaringType);
46
47 public FriendsService(IConfigSource config)
48 : base(config)
49 { 43 {
50 } 44 }
51 45
@@ -104,7 +98,6 @@ namespace OpenSim.Services.Friends
104 d.Data = new Dictionary<string, string>(); 98 d.Data = new Dictionary<string, string>();
105 d.Data["Flags"] = flags.ToString(); 99 d.Data["Flags"] = flags.ToString();
106 100
107 m_log.DebugFormat("[FRIENDS]: Storing {0} {1}", PrincipalID, Friend);
108 return m_Database.Store(d); 101 return m_Database.Store(d);
109 } 102 }
110 103