From 8eab365e213650a3937b92f9aa82a710a84d5903 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Tue, 8 Apr 2008 20:31:36 +0000 Subject: [PATCH] * Adjust some inventory lookup failure messages to reduce confusion as to what just went wrong --- .../Communications/Cache/UserProfileCacheService.cs | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs index 6f11d604c3..b22c0afb02 100644 --- a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs +++ b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs @@ -280,8 +280,9 @@ namespace OpenSim.Framework.Communications.Cache } else { - m_log.ErrorFormat("[INVENTORY CACHE]: Could not find user profile for {0} for folder {1}", - remoteClient.Name, folderID); + m_log.ErrorFormat( + "[USER CACHE]: HandleFetchInventoryDescendents() could not find user profile {0}, {1}", + remoteClient.Name, remoteClient.AgentId); return; } @@ -337,9 +338,10 @@ namespace OpenSim.Framework.Communications.Cache } else { - m_log.ErrorFormat("[INVENTORY CACHE]: " + - "Could not find user profile for {0} for folder {1}", - agentID.ToString(), folderID); + m_log.ErrorFormat( + "[USER CACHE]: HandleFetchInventoryDescendentsCAPS() Could not find user profile for {0}", + agentID); + return new List(); }