stop the local inventory services connector from logging an error when an item id isn't found.

making this query is legitimate and so the log line can cause false positivies.  It is up to callers to log an error if appropriate.
bulletsim
Justin Clark-Casey (justincc) 2011-07-08 22:34:03 +01:00
parent 192bd1057e
commit a048ec3f95
1 changed files with 3 additions and 3 deletions

View File

@ -284,9 +284,9 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Inventory
item = m_InventoryService.GetItem(item);
if (null == item)
m_log.ErrorFormat(
"[LOCAL INVENTORY SERVICES CONNECTOR]: Could not find item with id {0}", requestedItemId);
// if (null == item)
// m_log.ErrorFormat(
// "[LOCAL INVENTORY SERVICES CONNECTOR]: Could not find item with id {0}", requestedItemId);
return item;
}