diff --git a/OpenSim/Data/MSSQL/MSSQLRegionData.cs b/OpenSim/Data/MSSQL/MSSQLRegionData.cs
index 5a53f9b591..058c9de17f 100644
--- a/OpenSim/Data/MSSQL/MSSQLRegionData.cs
+++ b/OpenSim/Data/MSSQL/MSSQLRegionData.cs
@@ -415,7 +415,7 @@ namespace OpenSim.Data.MSSQL
///
public void StorePrimInventory(UUID primID, ICollection items)
{
- _Log.InfoFormat("[REGION DB]: Persisting Prim Inventory with prim ID {0}", primID);
+ //_Log.InfoFormat("[REGION DB]: Persisting Prim Inventory with prim ID {0}", primID);
//Statement from MySQL section!
// For now, we're just going to crudely remove all the previous inventory items
diff --git a/OpenSim/Data/MySQL/MySQLRegionData.cs b/OpenSim/Data/MySQL/MySQLRegionData.cs
index 521490c90f..ae048feb48 100644
--- a/OpenSim/Data/MySQL/MySQLRegionData.cs
+++ b/OpenSim/Data/MySQL/MySQLRegionData.cs
@@ -1808,7 +1808,7 @@ namespace OpenSim.Data.MySQL
///
public void StorePrimInventory(UUID primID, ICollection items)
{
- m_log.InfoFormat("[REGION DB]: Persisting Prim Inventory with prim ID {0}", primID);
+ //m_log.InfoFormat("[REGION DB]: Persisting Prim Inventory with prim ID {0}", primID);
// For now, we're just going to crudely remove all the previous inventory items
// no matter whether they have changed or not, and replace them with the current set.