Delete some verbose debug messages
parent
c4506cf4f3
commit
ca26583e6b
|
@ -498,7 +498,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends
|
||||||
|
|
||||||
protected virtual void StatusNotify(List<FriendInfo> friendList, UUID userID, bool online)
|
protected virtual void StatusNotify(List<FriendInfo> friendList, UUID userID, bool online)
|
||||||
{
|
{
|
||||||
m_log.DebugFormat("[FRIENDS]: Entering StatusNotify for {0}", userID);
|
//m_log.DebugFormat("[FRIENDS]: Entering StatusNotify for {0}", userID);
|
||||||
|
|
||||||
List<string> friendStringIds = friendList.ConvertAll<string>(friend => friend.Friend);
|
List<string> friendStringIds = friendList.ConvertAll<string>(friend => friend.Friend);
|
||||||
List<string> remoteFriendStringIds = new List<string>();
|
List<string> remoteFriendStringIds = new List<string>();
|
||||||
|
@ -527,15 +527,15 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends
|
||||||
// let's guard against sessions-gone-bad
|
// let's guard against sessions-gone-bad
|
||||||
if (friendSession != null && friendSession.RegionID != UUID.Zero)
|
if (friendSession != null && friendSession.RegionID != UUID.Zero)
|
||||||
{
|
{
|
||||||
m_log.DebugFormat("[FRIENDS]: Get region {0}", friendSession.RegionID);
|
//m_log.DebugFormat("[FRIENDS]: Get region {0}", friendSession.RegionID);
|
||||||
GridRegion region = GridService.GetRegionByUUID(m_Scenes[0].RegionInfo.ScopeID, friendSession.RegionID);
|
GridRegion region = GridService.GetRegionByUUID(m_Scenes[0].RegionInfo.ScopeID, friendSession.RegionID);
|
||||||
if (region != null)
|
if (region != null)
|
||||||
{
|
{
|
||||||
m_FriendsSimConnector.StatusNotify(region, userID, friendSession.UserID, online);
|
m_FriendsSimConnector.StatusNotify(region, userID, friendSession.UserID, online);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
//else
|
||||||
m_log.DebugFormat("[FRIENDS]: friend session is null or the region is UUID.Zero");
|
// m_log.DebugFormat("[FRIENDS]: friend session is null or the region is UUID.Zero");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -252,7 +252,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends
|
||||||
|
|
||||||
protected override void StatusNotify(List<FriendInfo> friendList, UUID userID, bool online)
|
protected override void StatusNotify(List<FriendInfo> friendList, UUID userID, bool online)
|
||||||
{
|
{
|
||||||
m_log.DebugFormat("[HGFRIENDS MODULE]: Entering StatusNotify for {0}", userID);
|
//m_log.DebugFormat("[HGFRIENDS MODULE]: Entering StatusNotify for {0}", userID);
|
||||||
|
|
||||||
// First, let's divide the friends on a per-domain basis
|
// First, let's divide the friends on a per-domain basis
|
||||||
Dictionary<string, List<FriendInfo>> friendsPerDomain = new Dictionary<string, List<FriendInfo>>();
|
Dictionary<string, List<FriendInfo>> friendsPerDomain = new Dictionary<string, List<FriendInfo>>();
|
||||||
|
|
|
@ -108,7 +108,7 @@ namespace OpenSim.Region.CoreModules.Framework
|
||||||
|
|
||||||
public void OnRegionHandleRequest(IClientAPI client, UUID regionID)
|
public void OnRegionHandleRequest(IClientAPI client, UUID regionID)
|
||||||
{
|
{
|
||||||
m_log.DebugFormat("[GRIDSERVICE THROTTLE]: RegionHandleRequest {0}", regionID);
|
//m_log.DebugFormat("[GRIDSERVICE THROTTLE]: RegionHandleRequest {0}", regionID);
|
||||||
ulong handle = 0;
|
ulong handle = 0;
|
||||||
if (IsLocalRegionHandle(regionID, out handle))
|
if (IsLocalRegionHandle(regionID, out handle))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue