diff options
author | Diva Canto | 2013-07-04 15:17:06 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-04 15:17:06 -0700 |
commit | ca26583e6bfdc9aa62e917a736f52ed5fdac75cd (patch) | |
tree | f1ae9772e73930885b99451306429392d05160c7 /OpenSim/Region | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-ca26583e6bfdc9aa62e917a736f52ed5fdac75cd.zip opensim-SC_OLD-ca26583e6bfdc9aa62e917a736f52ed5fdac75cd.tar.gz opensim-SC_OLD-ca26583e6bfdc9aa62e917a736f52ed5fdac75cd.tar.bz2 opensim-SC_OLD-ca26583e6bfdc9aa62e917a736f52ed5fdac75cd.tar.xz |
Delete some verbose debug messages
Diffstat (limited to 'OpenSim/Region')
3 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs b/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs index 6d4c65d..b693f2d 100644 --- a/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Friends/FriendsModule.cs | |||
@@ -498,7 +498,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends | |||
498 | 498 | ||
499 | protected virtual void StatusNotify(List<FriendInfo> friendList, UUID userID, bool online) | 499 | protected virtual void StatusNotify(List<FriendInfo> friendList, UUID userID, bool online) |
500 | { | 500 | { |
501 | m_log.DebugFormat("[FRIENDS]: Entering StatusNotify for {0}", userID); | 501 | //m_log.DebugFormat("[FRIENDS]: Entering StatusNotify for {0}", userID); |
502 | 502 | ||
503 | List<string> friendStringIds = friendList.ConvertAll<string>(friend => friend.Friend); | 503 | List<string> friendStringIds = friendList.ConvertAll<string>(friend => friend.Friend); |
504 | List<string> remoteFriendStringIds = new List<string>(); | 504 | List<string> remoteFriendStringIds = new List<string>(); |
@@ -527,15 +527,15 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends | |||
527 | // let's guard against sessions-gone-bad | 527 | // let's guard against sessions-gone-bad |
528 | if (friendSession != null && friendSession.RegionID != UUID.Zero) | 528 | if (friendSession != null && friendSession.RegionID != UUID.Zero) |
529 | { | 529 | { |
530 | m_log.DebugFormat("[FRIENDS]: Get region {0}", friendSession.RegionID); | 530 | //m_log.DebugFormat("[FRIENDS]: Get region {0}", friendSession.RegionID); |
531 | GridRegion region = GridService.GetRegionByUUID(m_Scenes[0].RegionInfo.ScopeID, friendSession.RegionID); | 531 | GridRegion region = GridService.GetRegionByUUID(m_Scenes[0].RegionInfo.ScopeID, friendSession.RegionID); |
532 | if (region != null) | 532 | if (region != null) |
533 | { | 533 | { |
534 | m_FriendsSimConnector.StatusNotify(region, userID, friendSession.UserID, online); | 534 | m_FriendsSimConnector.StatusNotify(region, userID, friendSession.UserID, online); |
535 | } | 535 | } |
536 | } | 536 | } |
537 | else | 537 | //else |
538 | m_log.DebugFormat("[FRIENDS]: friend session is null or the region is UUID.Zero"); | 538 | // m_log.DebugFormat("[FRIENDS]: friend session is null or the region is UUID.Zero"); |
539 | } | 539 | } |
540 | } | 540 | } |
541 | 541 | ||
diff --git a/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs b/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs index a456009..d00945e 100644 --- a/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs | |||
@@ -252,7 +252,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends | |||
252 | 252 | ||
253 | protected override void StatusNotify(List<FriendInfo> friendList, UUID userID, bool online) | 253 | protected override void StatusNotify(List<FriendInfo> friendList, UUID userID, bool online) |
254 | { | 254 | { |
255 | m_log.DebugFormat("[HGFRIENDS MODULE]: Entering StatusNotify for {0}", userID); | 255 | //m_log.DebugFormat("[HGFRIENDS MODULE]: Entering StatusNotify for {0}", userID); |
256 | 256 | ||
257 | // First, let's divide the friends on a per-domain basis | 257 | // First, let's divide the friends on a per-domain basis |
258 | Dictionary<string, List<FriendInfo>> friendsPerDomain = new Dictionary<string, List<FriendInfo>>(); | 258 | Dictionary<string, List<FriendInfo>> friendsPerDomain = new Dictionary<string, List<FriendInfo>>(); |
diff --git a/OpenSim/Region/CoreModules/Framework/GridServiceThrottle/GridServiceThrottleModule.cs b/OpenSim/Region/CoreModules/Framework/GridServiceThrottle/GridServiceThrottleModule.cs index 5511fea..a662731 100644 --- a/OpenSim/Region/CoreModules/Framework/GridServiceThrottle/GridServiceThrottleModule.cs +++ b/OpenSim/Region/CoreModules/Framework/GridServiceThrottle/GridServiceThrottleModule.cs | |||
@@ -108,7 +108,7 @@ namespace OpenSim.Region.CoreModules.Framework | |||
108 | 108 | ||
109 | public void OnRegionHandleRequest(IClientAPI client, UUID regionID) | 109 | public void OnRegionHandleRequest(IClientAPI client, UUID regionID) |
110 | { | 110 | { |
111 | m_log.DebugFormat("[GRIDSERVICE THROTTLE]: RegionHandleRequest {0}", regionID); | 111 | //m_log.DebugFormat("[GRIDSERVICE THROTTLE]: RegionHandleRequest {0}", regionID); |
112 | ulong handle = 0; | 112 | ulong handle = 0; |
113 | if (IsLocalRegionHandle(regionID, out handle)) | 113 | if (IsLocalRegionHandle(regionID, out handle)) |
114 | { | 114 | { |