diff options
Diffstat (limited to 'OpenSim/Region/Environment')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs index 0879357..16da516 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs | |||
@@ -384,7 +384,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
384 | else | 384 | else |
385 | { | 385 | { |
386 | m_log.ErrorFormat( | 386 | m_log.ErrorFormat( |
387 | "[PRIMINVENTORY]: " + | 387 | "[PRIM INVENTORY]: " + |
388 | "Tried to remove item ID {0} from prim {1}, {2} but the item does not exist in this inventory", | 388 | "Tried to remove item ID {0} from prim {1}, {2} but the item does not exist in this inventory", |
389 | itemID, Name, UUID); | 389 | itemID, Name, UUID); |
390 | } | 390 | } |
@@ -400,6 +400,10 @@ namespace OpenSim.Region.Environment.Scenes | |||
400 | /// <param name="localID"></param> | 400 | /// <param name="localID"></param> |
401 | public bool GetInventoryFileName(IClientAPI client, uint localID) | 401 | public bool GetInventoryFileName(IClientAPI client, uint localID) |
402 | { | 402 | { |
403 | // m_log.DebugFormat( | ||
404 | // "[PRIM INVENTORY]: Received request from client {0} for inventory file name of {1}, {2}", | ||
405 | // client.AgentId, Name, UUID); | ||
406 | |||
403 | if (m_inventorySerial > 0) | 407 | if (m_inventorySerial > 0) |
404 | { | 408 | { |
405 | client.SendTaskInventory(m_uuid, (short)m_inventorySerial, | 409 | client.SendTaskInventory(m_uuid, (short)m_inventorySerial, |
@@ -455,8 +459,8 @@ namespace OpenSim.Region.Environment.Scenes | |||
455 | 459 | ||
456 | fileData = Helpers.StringToField(invString.BuildString); | 460 | fileData = Helpers.StringToField(invString.BuildString); |
457 | 461 | ||
458 | // m_log.InfoFormat( | 462 | // m_log.DebugFormat( |
459 | // "[PRIMINVENTORY]: RequestInventoryFile fileData: {0}", Helpers.FieldToUTF8String(fileData)); | 463 | // "[PRIM INVENTORY]: RequestInventoryFile fileData: {0}", Helpers.FieldToUTF8String(fileData)); |
460 | 464 | ||
461 | if (fileData.Length > 2) | 465 | if (fileData.Length > 2) |
462 | { | 466 | { |