From a81edef2b9b32c6697a46f504af679185aab3ceb Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Thu, 1 May 2008 21:22:03 +0000 Subject: * Refactor: Remove redundant userID from further up the inventory request chain --- OpenSim/Region/Communications/Local/LocalInventoryService.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'OpenSim/Region/Communications/Local/LocalInventoryService.cs') 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 } } - callback(userID, folders, items); + m_log.InfoFormat( + "[LOCAL1 INVENTORY SERVICE]: Received inventory response for user {0} containing {1} folders and {2} items", + userID, folders.Count, items.Count); + + callback(folders, items); } public override bool HasInventoryForUser(LLUUID userID) -- cgit v1.1