diff options
author | Justin Clarke Casey | 2008-05-09 15:51:02 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-05-09 15:51:02 +0000 |
commit | 6e2c7da0182c0ee5bf95cb50e95878caa968a77b (patch) | |
tree | 8c7699c47ad20bed5b2e0ead2cd25797b5b52ce9 /OpenSim/Framework/Communications | |
parent | * Restoring some initial inventory lookup polling delays in order to deal wit... (diff) | |
download | opensim-SC_OLD-6e2c7da0182c0ee5bf95cb50e95878caa968a77b.zip opensim-SC_OLD-6e2c7da0182c0ee5bf95cb50e95878caa968a77b.tar.gz opensim-SC_OLD-6e2c7da0182c0ee5bf95cb50e95878caa968a77b.tar.bz2 opensim-SC_OLD-6e2c7da0182c0ee5bf95cb50e95878caa968a77b.tar.xz |
* Minor: Insert utility function to format raw xml strings into indented xml for debugging purposes
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | 4 | ||||
-rw-r--r-- | OpenSim/Framework/Communications/Capabilities/Caps.cs | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs index 3143437..b167682 100644 --- a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs +++ b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | |||
@@ -341,7 +341,9 @@ namespace OpenSim.Framework.Communications.Cache | |||
341 | public List<InventoryItemBase> HandleFetchInventoryDescendentsCAPS(LLUUID agentID, LLUUID folderID, LLUUID ownerID, | 341 | public List<InventoryItemBase> HandleFetchInventoryDescendentsCAPS(LLUUID agentID, LLUUID folderID, LLUUID ownerID, |
342 | bool fetchFolders, bool fetchItems, int sortOrder) | 342 | bool fetchFolders, bool fetchItems, int sortOrder) |
343 | { | 343 | { |
344 | //m_log.DebugFormat("[INVENTORY CACHE]: Fetching folders/items from {0} for agent {1}", folderID, agentID); | 344 | // m_log.DebugFormat( |
345 | // "[INVENTORY CACHE]: Fetching folders ({0}), items ({1}) from {2} for agent {3}", | ||
346 | // fetchFolders, fetchItems, folderID, agentID); | ||
345 | 347 | ||
346 | // XXX We're not handling sortOrder yet! | 348 | // XXX We're not handling sortOrder yet! |
347 | 349 | ||
diff --git a/OpenSim/Framework/Communications/Capabilities/Caps.cs b/OpenSim/Framework/Communications/Capabilities/Caps.cs index 8061e28..ad3d79d 100644 --- a/OpenSim/Framework/Communications/Capabilities/Caps.cs +++ b/OpenSim/Framework/Communications/Capabilities/Caps.cs | |||
@@ -269,8 +269,9 @@ namespace OpenSim.Framework.Communications.Capabilities | |||
269 | { | 269 | { |
270 | response = "<llsd><map><key>folders</key><array>" + response + "</array></map></llsd>"; | 270 | response = "<llsd><map><key>folders</key><array>" + response + "</array></map></llsd>"; |
271 | } | 271 | } |
272 | 272 | ||
273 | //m_log.DebugFormat("[AGENT INVENTORY]: Replying to CAPS fetch inventory request {0}", response); | 273 | //m_log.DebugFormat("[AGENT INVENTORY]: Replying to CAPS fetch inventory request with following xml"); |
274 | //m_log.Debug(Util.GetFormattedXml(response)); | ||
274 | 275 | ||
275 | return response; | 276 | return response; |
276 | } | 277 | } |
@@ -960,4 +961,4 @@ namespace OpenSim.Framework.Communications.Capabilities | |||
960 | } | 961 | } |
961 | } | 962 | } |
962 | } | 963 | } |
963 | } \ No newline at end of file | 964 | } |