* Adjust some inventory lookup failure messages to reduce confusion as to what just went wrong
parent
f8faf18c66
commit
8eab365e21
|
@ -280,8 +280,9 @@ namespace OpenSim.Framework.Communications.Cache
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
m_log.ErrorFormat("[INVENTORY CACHE]: Could not find user profile for {0} for folder {1}",
|
m_log.ErrorFormat(
|
||||||
remoteClient.Name, folderID);
|
"[USER CACHE]: HandleFetchInventoryDescendents() could not find user profile {0}, {1}",
|
||||||
|
remoteClient.Name, remoteClient.AgentId);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -337,9 +338,10 @@ namespace OpenSim.Framework.Communications.Cache
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
m_log.ErrorFormat("[INVENTORY CACHE]: " +
|
m_log.ErrorFormat(
|
||||||
"Could not find user profile for {0} for folder {1}",
|
"[USER CACHE]: HandleFetchInventoryDescendentsCAPS() Could not find user profile for {0}",
|
||||||
agentID.ToString(), folderID);
|
agentID);
|
||||||
|
|
||||||
return new List<InventoryItemBase>();
|
return new List<InventoryItemBase>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue