aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-15 16:35:27 +0000
committerJustin Clarke Casey2008-10-15 16:35:27 +0000
commit9324c3f110d70d44ef91c18e570cffc59d067683 (patch)
tree6ce60aa08beca59e9e985868f7435ed89cabf59d /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
parent* minor: oops, small textual tweak (diff)
downloadopensim-SC_OLD-9324c3f110d70d44ef91c18e570cffc59d067683.zip
opensim-SC_OLD-9324c3f110d70d44ef91c18e570cffc59d067683.tar.gz
opensim-SC_OLD-9324c3f110d70d44ef91c18e570cffc59d067683.tar.bz2
opensim-SC_OLD-9324c3f110d70d44ef91c18e570cffc59d067683.tar.xz
* refactor: Move error logging from GetUserDetails up to callers, since there are some circumstances in which not finding a user is not an error
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index cb162ab..b826a12 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -5044,8 +5044,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP
5044 { 5044 {
5045 CachedUserInfo userInfo = ((Scene)m_scene).CommsManager.UserProfileCacheService.GetUserDetails(AgentId); 5045 CachedUserInfo userInfo = ((Scene)m_scene).CommsManager.UserProfileCacheService.GetUserDetails(AgentId);
5046 if (userInfo == null) 5046 if (userInfo == null)
5047 break; 5047 {
5048 m_log.ErrorFormat(
5049 "[CLIENT]: Could not resolve user {0} for caps inventory update",
5050 AgentId);
5048 5051
5052 break;
5053 }
5054
5049 if (userInfo.RootFolder == null) 5055 if (userInfo.RootFolder == null)
5050 break; 5056 break;
5051 5057