Thanks, Justin, for:
Message to confirm inventory retrieval rather than simply relying on the absence of a not found message.afrisby
parent
4e7763f8de
commit
0ef0c9f4fb
|
@ -96,6 +96,10 @@ namespace OpenSim.Framework.Communications
|
||||||
rootFolder = plugin.Value.getUserRootFolder(userID);
|
rootFolder = plugin.Value.getUserRootFolder(userID);
|
||||||
if (rootFolder != null)
|
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 = plugin.Value.getInventoryFolders(rootFolder.folderID);
|
||||||
inventoryList.Insert(0, rootFolder);
|
inventoryList.Insert(0, rootFolder);
|
||||||
return inventoryList;
|
return inventoryList;
|
||||||
|
|
Loading…
Reference in New Issue