mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 08:06:27 +08:00
* refactor: Move error logging from GetUserDetails up to callers, since there are some circumstances in which not finding a user is not an error
This commit is contained in:
@@ -5044,8 +5044,14 @@ namespace OpenSim.Region.ClientStack.LindenUDP
|
||||
{
|
||||
CachedUserInfo userInfo = ((Scene)m_scene).CommsManager.UserProfileCacheService.GetUserDetails(AgentId);
|
||||
if (userInfo == null)
|
||||
break;
|
||||
{
|
||||
m_log.ErrorFormat(
|
||||
"[CLIENT]: Could not resolve user {0} for caps inventory update",
|
||||
AgentId);
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
if (userInfo.RootFolder == null)
|
||||
break;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user