diff options
author | Justin Clark-Casey (justincc) | 2010-02-17 20:57:29 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-02-17 20:57:29 +0000 |
commit | 95a31c9b6f0ca4308bc74fb0da5572885823451f (patch) | |
tree | ee24d3e2f0ff2203d13099f8e745eb9bf3db2cfe | |
parent | Disable Data.BasicRegioNTest.T016_RandomSogWithSceneParts() temporarily since... (diff) | |
download | opensim-SC_OLD-95a31c9b6f0ca4308bc74fb0da5572885823451f.zip opensim-SC_OLD-95a31c9b6f0ca4308bc74fb0da5572885823451f.tar.gz opensim-SC_OLD-95a31c9b6f0ca4308bc74fb0da5572885823451f.tar.bz2 opensim-SC_OLD-95a31c9b6f0ca4308bc74fb0da5572885823451f.tar.xz |
minor: fix error inserting field in log message
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs index 3883dc6..191e859 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs | |||
@@ -317,7 +317,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Inventory | |||
317 | item = m_InventoryService.GetItem(item); | 317 | item = m_InventoryService.GetItem(item); |
318 | 318 | ||
319 | if (null == item) | 319 | if (null == item) |
320 | m_log.ErrorFormat("[LOCAL INVENTORY SERVICES CONNECTOR]: Could not find item with id {0}"); | 320 | m_log.ErrorFormat("[LOCAL INVENTORY SERVICES CONNECTOR]: Could not find item with id {0}", item.ID); |
321 | 321 | ||
322 | return item; | 322 | return item; |
323 | } | 323 | } |