Removed "Loading inventory for Primitive" message.
Fixed small bug in thread counter.ThreadPoolClientBranch
parent
a9c1f3fdb4
commit
f4ddf5cf28
|
@ -302,7 +302,7 @@ namespace OpenSim.Framework.Data.MySQL
|
|||
/// <param name="prim"></param>
|
||||
private void LoadItems(SceneObjectPart prim)
|
||||
{
|
||||
MainLog.Instance.Verbose("DATASTORE", "Loading inventory for {0}, {1}", prim.Name, prim.UUID);
|
||||
//MainLog.Instance.Verbose("DATASTORE", "Loading inventory for {0}, {1}", prim.Name, prim.UUID);
|
||||
|
||||
DataTable dbItems = m_itemsTable;
|
||||
|
||||
|
|
|
@ -187,7 +187,7 @@ namespace OpenSim.Region.ScriptEngine.Common.ScriptEngineBase
|
|||
|
||||
lock (eventQueueThreadsLock)
|
||||
{
|
||||
for (int ThreadCount = eventQueueThreads.Count; ThreadCount <= numberOfThreads; ThreadCount++)
|
||||
for (int ThreadCount = eventQueueThreads.Count; ThreadCount < numberOfThreads; ThreadCount++)
|
||||
{
|
||||
StartNewThreadClass();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue