aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/InventoryServiceBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Communications/InventoryServiceBase.cs')
-rw-r--r--OpenSim/Framework/Communications/InventoryServiceBase.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/InventoryServiceBase.cs b/OpenSim/Framework/Communications/InventoryServiceBase.cs
index 1f64187..28b81d4 100644
--- a/OpenSim/Framework/Communications/InventoryServiceBase.cs
+++ b/OpenSim/Framework/Communications/InventoryServiceBase.cs
@@ -96,6 +96,10 @@ namespace OpenSim.Framework.Communications
96 rootFolder = plugin.Value.getUserRootFolder(userID); 96 rootFolder = plugin.Value.getUserRootFolder(userID);
97 if (rootFolder != null) 97 if (rootFolder != null)
98 { 98 {
99 MainLog.Instance.Verbose(
100 "INVENTORY",
101 "Found root folder for user with ID " + userID + ". Retrieving inventory contents.");
102
99 inventoryList = plugin.Value.getInventoryFolders(rootFolder.folderID); 103 inventoryList = plugin.Value.getInventoryFolders(rootFolder.folderID);
100 inventoryList.Insert(0, rootFolder); 104 inventoryList.Insert(0, rootFolder);
101 return inventoryList; 105 return inventoryList;