diff options
author | Charles Krinke | 2007-12-14 21:19:13 +0000 |
---|---|---|
committer | Charles Krinke | 2007-12-14 21:19:13 +0000 |
commit | 0ef0c9f4fb3c7e8fb8f09a28e37b811f6b216bf4 (patch) | |
tree | 290bf5e6139dbc20930ea078a8e9794f615b6dd2 /OpenSim/Framework/Communications | |
parent | Thank you Justin for: (diff) | |
download | opensim-SC_OLD-0ef0c9f4fb3c7e8fb8f09a28e37b811f6b216bf4.zip opensim-SC_OLD-0ef0c9f4fb3c7e8fb8f09a28e37b811f6b216bf4.tar.gz opensim-SC_OLD-0ef0c9f4fb3c7e8fb8f09a28e37b811f6b216bf4.tar.bz2 opensim-SC_OLD-0ef0c9f4fb3c7e8fb8f09a28e37b811f6b216bf4.tar.xz |
Thanks, Justin, for:
Message to confirm inventory retrieval rather than simply
relying on the absence of a not found message.
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r-- | OpenSim/Framework/Communications/InventoryServiceBase.cs | 4 |
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; |