Additional debug message to help diagnose a warning message and exception related to previous commit.
See http://opensimulator.org/mantis/view.php?id=7054#c28282fsassets
parent
c74cef0f42
commit
a68aab14fa
|
@ -590,6 +590,9 @@ namespace OpenSim.Capabilities.Handlers
|
|||
// Do some post-processing. May need to fetch more from inv server for links
|
||||
foreach (InventoryCollection contents in fetchedContents)
|
||||
{
|
||||
if (contents == null)
|
||||
continue;
|
||||
|
||||
InventoryCollectionWithDescendents coll = new InventoryCollectionWithDescendents();
|
||||
coll.Collection = contents;
|
||||
|
||||
|
|
|
@ -302,6 +302,7 @@ namespace OpenSim.Services.Connectors
|
|||
{
|
||||
m_log.WarnFormat("[XINVENTORY SERVICES CONNECTOR]: Folder id does not match. Expected {0} got {1}",
|
||||
folderIDs[i], fid);
|
||||
m_log.WarnFormat("[XINVENTORY SERVICES CONNECTOR]: ", String.Join(",", folderIDs), String.Join(",", resultSet.Keys));
|
||||
}
|
||||
|
||||
i += 1;
|
||||
|
|
Loading…
Reference in New Issue