aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/InventoryServiceBase.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-03-18 18:19:44 +0000
committerJustin Clarke Casey2008-03-18 18:19:44 +0000
commit18f9f1410d45dc0b81cd6b7527fea0db0661d203 (patch)
treec1482f3c572ac79ee01ed3b937e4ea4e90ed878d /OpenSim/Framework/Communications/InventoryServiceBase.cs
parentFormatting cleanup. (diff)
downloadopensim-SC_OLD-18f9f1410d45dc0b81cd6b7527fea0db0661d203.zip
opensim-SC_OLD-18f9f1410d45dc0b81cd6b7527fea0db0661d203.tar.gz
opensim-SC_OLD-18f9f1410d45dc0b81cd6b7527fea0db0661d203.tar.bz2
opensim-SC_OLD-18f9f1410d45dc0b81cd6b7527fea0db0661d203.tar.xz
* Just inserting some exploratory comments into inventory code
Diffstat (limited to '')
-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 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);