Skip to content

Commit

Permalink
Reduce the amount of "Build background buttonlist" logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
stichnot committed Nov 24, 2012
1 parent d4dcff3 commit d1243e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythui/mythuibuttonlist.cpp
Expand Up @@ -2516,7 +2516,7 @@ void MythUIButtonList::customEvent(QEvent *event)
for (; cur < npe->m_start + npe->m_pageSize && cur < GetCount(); ++cur)
{
const int loginterval = (cur < 1000 ? 100 : 500);
if (cur % loginterval == 0)
if (cur > 200 && cur % loginterval == 0)
LOG(VB_GENERAL, LOG_INFO,
QString("Build background buttonlist item %1").arg(cur));
emit itemLoaded(GetItemAt(cur));
Expand Down

0 comments on commit d1243e2

Please sign in to comment.