diff options
author | Diva Canto | 2010-02-21 09:09:35 -0800 |
---|---|---|
committer | Diva Canto | 2010-02-21 09:09:35 -0800 |
commit | 552e9e8c7832f41f5a53666d9c3ece62f57be4ba (patch) | |
tree | 7fc71278cd0352f149d39910ea278a3b3f9d2465 /OpenSim/Region/CoreModules | |
parent | SQLite connector for UserAccounts and Auth works. Yey! (diff) | |
download | opensim-SC_OLD-552e9e8c7832f41f5a53666d9c3ece62f57be4ba.zip opensim-SC_OLD-552e9e8c7832f41f5a53666d9c3ece62f57be4ba.tar.gz opensim-SC_OLD-552e9e8c7832f41f5a53666d9c3ece62f57be4ba.tar.bz2 opensim-SC_OLD-552e9e8c7832f41f5a53666d9c3ece62f57be4ba.tar.xz |
* Added SQlite connector for AvatarData. Tested -- works.
* Small bug fix in debug message
* Set default standalone configs to use SQLite across the board
Diffstat (limited to 'OpenSim/Region/CoreModules')
-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 54e62e2..e97d21f 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Inventory/LocalInventoryServiceConnector.cs | |||
@@ -314,7 +314,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Inventory | |||
314 | item = m_InventoryService.GetItem(item); | 314 | item = m_InventoryService.GetItem(item); |
315 | 315 | ||
316 | if (null == item) | 316 | if (null == item) |
317 | m_log.ErrorFormat("[LOCAL INVENTORY SERVICES CONNECTOR]: Could not find item with id {0}"); | 317 | m_log.ErrorFormat("[LOCAL INVENTORY SERVICES CONNECTOR]: Could not find item with id {0}", item.ID); |
318 | 318 | ||
319 | return item; | 319 | return item; |
320 | } | 320 | } |