diff options
Diffstat (limited to 'OpenSim/Region/Communications/Local')
-rw-r--r-- | OpenSim/Region/Communications/Local/LocalInventoryService.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalInventoryService.cs b/OpenSim/Region/Communications/Local/LocalInventoryService.cs index 80108e3..9e63fbf 100644 --- a/OpenSim/Region/Communications/Local/LocalInventoryService.cs +++ b/OpenSim/Region/Communications/Local/LocalInventoryService.cs | |||
@@ -77,7 +77,11 @@ namespace OpenSim.Region.Communications.Local | |||
77 | } | 77 | } |
78 | } | 78 | } |
79 | 79 | ||
80 | callback(userID, folders, items); | 80 | m_log.InfoFormat( |
81 | "[LOCAL1 INVENTORY SERVICE]: Received inventory response for user {0} containing {1} folders and {2} items", | ||
82 | userID, folders.Count, items.Count); | ||
83 | |||
84 | callback(folders, items); | ||
81 | } | 85 | } |
82 | 86 | ||
83 | public override bool HasInventoryForUser(LLUUID userID) | 87 | public override bool HasInventoryForUser(LLUUID userID) |