From 1173a14fbf787d1605dceb931955451b9e9b8ff6 Mon Sep 17 00:00:00 2001 From: MW Date: Fri, 14 Dec 2007 11:45:27 +0000 Subject: Added some extra debug console output to Inventory Server and region OGS1 inventory requests. --- OpenSim/Grid/InventoryServer/GridInventoryService.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'OpenSim/Grid/InventoryServer/GridInventoryService.cs') diff --git a/OpenSim/Grid/InventoryServer/GridInventoryService.cs b/OpenSim/Grid/InventoryServer/GridInventoryService.cs index c6d3302..8756ecb 100644 --- a/OpenSim/Grid/InventoryServer/GridInventoryService.cs +++ b/OpenSim/Grid/InventoryServer/GridInventoryService.cs @@ -74,6 +74,7 @@ namespace OpenSim.Grid.InventoryServer public InventoryCollection GetUserInventory(Guid rawUserID) { + Console.WriteLine("Request for Inventory for " + rawUserID.ToString()); LLUUID userID = new LLUUID(rawUserID); InventoryCollection invCollection = new InventoryCollection(); @@ -117,6 +118,7 @@ namespace OpenSim.Grid.InventoryServer public bool AddInventoryItem( InventoryItemBase item) { + Console.WriteLine("creating new item for " + item.avatarID.ToString()); AddNewInventoryItem(item.avatarID, item); return true; } -- cgit v1.1