Added some extra debug console output to Inventory Server and region OGS1 inventory requests.

This commit is contained in:
MW
2007-12-14 11:45:27 +00:00
parent 0a4a5bbcef
commit 1173a14fbf
2 changed files with 12 additions and 8 deletions

View File

@@ -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;
}