Reverting MySQLLegacyRegionData spam

prioritization
John Hurliman 2009-10-06 14:26:00 -07:00
parent a3a8691ebe
commit c855806548
1 changed files with 0 additions and 6 deletions

View File

@ -402,12 +402,8 @@ namespace OpenSim.Data.MySQL
Dictionary<UUID, SceneObjectPart> prims = new Dictionary<UUID, SceneObjectPart>(); Dictionary<UUID, SceneObjectPart> prims = new Dictionary<UUID, SceneObjectPart>();
SceneObjectGroup grp = null; SceneObjectGroup grp = null;
m_log.Debug("[REGION DB]: Entering LoadObjects()");
lock (m_Connection) lock (m_Connection)
{ {
m_log.Debug("[REGION DB]: Entered LoadObjects() lock");
using (MySqlCommand cmd = m_Connection.CreateCommand()) using (MySqlCommand cmd = m_Connection.CreateCommand())
{ {
cmd.CommandText = "select *, " + cmd.CommandText = "select *, " +
@ -423,8 +419,6 @@ namespace OpenSim.Data.MySQL
{ {
while (reader.Read()) while (reader.Read())
{ {
m_log.Debug("[REGION DB]: LoadObjects() Read a prim");
SceneObjectPart prim = BuildPrim(reader); SceneObjectPart prim = BuildPrim(reader);
if (reader["Shape"] is DBNull) if (reader["Shape"] is DBNull)
prim.Shape = PrimitiveBaseShape.Default; prim.Shape = PrimitiveBaseShape.Default;