diff options
Diffstat (limited to '')
-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 d4a501c..c73d45c 100644 --- a/OpenSim/Framework/Communications/InventoryServiceBase.cs +++ b/OpenSim/Framework/Communications/InventoryServiceBase.cs | |||
@@ -128,6 +128,7 @@ namespace OpenSim.Framework.Communications | |||
128 | } | 128 | } |
129 | } | 129 | } |
130 | 130 | ||
131 | // See IInventoryServices | ||
131 | public virtual bool HasInventoryForUser(LLUUID userID) | 132 | public virtual bool HasInventoryForUser(LLUUID userID) |
132 | { | 133 | { |
133 | return false; | 134 | return false; |
@@ -200,6 +201,9 @@ namespace OpenSim.Framework.Communications | |||
200 | 201 | ||
201 | protected void AddFolder(InventoryFolderBase folder) | 202 | protected void AddFolder(InventoryFolderBase folder) |
202 | { | 203 | { |
204 | m_log.DebugFormat( | ||
205 | "[INVENTORY SERVICE BASE]: Adding folder {0}, {1} to {2}", folder.name, folder.folderID, folder.parentID); | ||
206 | |||
203 | foreach (KeyValuePair<string, IInventoryData> plugin in m_plugins) | 207 | foreach (KeyValuePair<string, IInventoryData> plugin in m_plugins) |
204 | { | 208 | { |
205 | plugin.Value.addInventoryFolder(folder); | 209 | plugin.Value.addInventoryFolder(folder); |