* Adjust some inventory lookup failure messages to reduce confusion as to what just went wrong

0.6.0-stable
Justin Clarke Casey 2008-04-08 20:31:36 +00:00
parent f8faf18c66
commit 8eab365e21
1 changed files with 7 additions and 5 deletions

View File

@ -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<InventoryItemBase>();
}