aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/MySQL/MySQLLegacyRegionData.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/MySQLLegacyRegionData.cs b/OpenSim/Data/MySQL/MySQLLegacyRegionData.cs
index fe0914b..839ac7f 100644
--- a/OpenSim/Data/MySQL/MySQLLegacyRegionData.cs
+++ b/OpenSim/Data/MySQL/MySQLLegacyRegionData.cs
@@ -401,6 +401,7 @@ namespace OpenSim.Data.MySQL
401 Dictionary<UUID, SceneObjectGroup> objects = new Dictionary<UUID, SceneObjectGroup>(); 401 Dictionary<UUID, SceneObjectGroup> objects = new Dictionary<UUID, SceneObjectGroup>();
402 Dictionary<UUID, SceneObjectPart> prims = new Dictionary<UUID, SceneObjectPart>(); 402 Dictionary<UUID, SceneObjectPart> prims = new Dictionary<UUID, SceneObjectPart>();
403 SceneObjectGroup grp = null; 403 SceneObjectGroup grp = null;
404 int count = 0;
404 405
405 lock (m_Connection) 406 lock (m_Connection)
406 { 407 {
@@ -463,6 +464,10 @@ namespace OpenSim.Data.MySQL
463 if (link != 0) 464 if (link != 0)
464 prim.LinkNum = link; 465 prim.LinkNum = link;
465 } 466 }
467
468 ++count;
469 if (count % 5000 == 0)
470 m_log.Debug("[REGION DB]: Loaded " + count + " prims...");
466 } 471 }
467 } 472 }
468 473