Removed annoying debug logs

This commit is contained in:
Alex Zolotarev 2015-01-13 13:03:29 +03:00
parent 9e693d7901
commit e6db3c01bd
2 changed files with 0 additions and 6 deletions

View file

@ -186,7 +186,6 @@ struct AllocateOnDemandMultiThreadedPoolTraits : TBase
if (l.empty())
{
m_poolSize += base_t::m_factory.ElemSize() * base_t::m_factory.BatchSize();
LOG(LDEBUG, ("allocating ", base_t::m_factory.ElemSize(), "bytes for ", base_t::m_factory.ResName(), " on-demand, poolSize=", m_poolSize / base_t::m_factory.ElemSize(), ", totalMemory=", m_poolSize));
for (unsigned i = 0; i < base_t::m_factory.BatchSize(); ++i)
l.push_back(base_t::m_factory.Create());
}
@ -230,7 +229,6 @@ struct AllocateOnDemandSingleThreadedPoolTraits : TBase
if (l.empty())
{
m_poolSize += base_t::m_factory.ElemSize() * base_t::m_factory.BatchSize();
LOG(LDEBUG, ("allocating", base_t::m_factory.BatchSize(), "elements for ", base_t::m_factory.ResName(), "on-demand, poolSize=", m_poolSize / base_t::m_factory.ElemSize(), ", totalMemory=", m_poolSize));
for (unsigned i = 0; i < base_t::m_factory.BatchSize(); ++i)
l.push_back(base_t::m_factory.Create());
}

View file

@ -86,11 +86,7 @@ public:
break;
if (doFirstWait)
{
doFirstWait = false;
if (!m_resName.empty())
LOG(LDEBUG, ("consumer is waiting for", m_resName));
}
m_Cond.Wait();
}