Ticket #3782: 3782-reassign-eit-log-output.diff

File 3782-reassign-eit-log-output.diff, 1.8 KB (added by Nick Morrott <knowledgejunkie [at] gmail [dot] com>, 17 years ago)
  • mythtv/libs/libmythtv/eitcache.cpp

     
    321321
    322322    if (accessCnt % 500000 == 50000)
    323323    {
    324         VERBOSE(VB_GENERAL, endl << GetStatistics());
     324        VERBOSE(VB_EIT, endl << GetStatistics());
    325325        WriteToDB();
    326326    }
    327327
  • mythtv/libs/libmythtv/eitscanner.cpp

     
    109109        // seen any in a while, tell scheduler to run.
    110110        if (eitCount && (t.elapsed() > 60 * 1000))
    111111        {
    112             VERBOSE(VB_GENERAL, LOC + "Added "<<eitCount<<" EIT Events");
     112            VERBOSE(VB_EIT, LOC + "Added "<<eitCount<<" EIT Events");
    113113            eitCount = 0;
    114114            RescheduleRecordings();
    115115        }
     
    119119            // if there have been any new events, tell scheduler to run.
    120120            if (eitCount)
    121121            {
    122                 VERBOSE(VB_GENERAL, LOC + "Added "<<eitCount<<" EIT Events");
     122                VERBOSE(VB_EIT, LOC + "Added "<<eitCount<<" EIT Events");
    123123                eitCount = 0;
    124124                RescheduleRecordings();
    125125            }
     
    131131            {
    132132                eitHelper->WriteEITCache();
    133133                rec->SetChannel(*activeScanNextChan, TVRec::kFlagEITScan);
    134                 VERBOSE(VB_GENERAL, LOC +
     134                VERBOSE(VB_EIT, LOC +
    135135                        QString("Now looking for EIT data on "
    136136                                "multiplex of channel %1")
    137137                        .arg(*activeScanNextChan));