Thanks, Justin, for:

Message to confirm inventory retrieval rather than simply
 relying on the absence of a not found message.
This commit is contained in:
Charles Krinke
2007-12-14 21:19:13 +00:00
parent 4e7763f8de
commit 0ef0c9f4fb

View File

@@ -96,6 +96,10 @@ namespace OpenSim.Framework.Communications
rootFolder = plugin.Value.getUserRootFolder(userID);
if (rootFolder != null)
{
MainLog.Instance.Verbose(
"INVENTORY",
"Found root folder for user with ID " + userID + ". Retrieving inventory contents.");
inventoryList = plugin.Value.getInventoryFolders(rootFolder.folderID);
inventoryList.Insert(0, rootFolder);
return inventoryList;