aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Friends/FriendsService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Services/Friends/FriendsService.cs')
-rw-r--r--OpenSim/Services/Friends/FriendsService.cs9
1 files changed, 1 insertions, 8 deletions
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