Skip to content

Commit

Permalink
Add debug message when PMT found
Browse files Browse the repository at this point in the history
This helps in debugging PMT handling.
No functional changes.
  • Loading branch information
kmdewaal committed Aug 20, 2022
1 parent a6e1128 commit 1c26ed9
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()));
}

LOG(VB_CHANNEL, LOG_DEBUG, LOC +
QString("Found PMT; pmt->ProgramNumber(%1)")
Expand Down

0 comments on commit 1c26ed9

Please sign in to comment.