Skip to content

Commit

Permalink
Add debug log message when PMT found
Browse files Browse the repository at this point in the history
No functional changes.
  • Loading branch information
kmdewaal committed May 16, 2022
1 parent d303e3d commit b44bd89
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions mythtv/libs/libmythtv/recorders/dtvsignalmonitor.cpp
Expand Up @@ -373,6 +373,12 @@ void DTVSignalMonitor::HandlePMT(uint /*program_num*/, const ProgramMapTable *pm
}
return; // Not the PMT we are looking for...
}
else
{
LOG(VB_CHANNEL, LOG_DEBUG, LOC +
QString("Found PMT; pmt->ProgramNumber(%1)")
.arg(pmt->ProgramNumber()));
}

if (pmt->IsEncrypted(GetDTVChannel()->GetSIStandard())) {
LOG(VB_GENERAL, LOG_NOTICE, LOC +
Expand Down

0 comments on commit b44bd89

Please sign in to comment.